]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_factory.c
Rename this to self in the framework.
[mlt] / src / framework / mlt_factory.c
index ebfc1076bf7de9b9ccdf6968c2f329c62733b9a4..8fa24ae8ca289d3977a921aaa407fdc947dc7b63 100644 (file)
@@ -57,28 +57,28 @@ static int unique_id = 0;
  *
  * \param listener
  * \param owner
- * \param this
+ * \param self
  * \param args
  */
 
-static void mlt_factory_create_request( mlt_listener listener, mlt_properties owner, mlt_service this, void **args )
+static void mlt_factory_create_request( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
 {
        if ( listener != NULL )
-               listener( owner, this, ( char * )args[ 0 ], ( char * )args[ 1 ], ( mlt_service * )args[ 2 ] );
+               listener( owner, self, ( char * )args[ 0 ], ( char * )args[ 1 ], ( mlt_service * )args[ 2 ] );
 }
 
 /** the -create-done event transmitter
  *
  * \param listener
  * \param owner
- * \param this
+ * \param self
  * \param args
  */
 
-static void mlt_factory_create_done( mlt_listener listener, mlt_properties owner, mlt_service this, void **args )
+static void mlt_factory_create_done( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
 {
        if ( listener != NULL )
-               listener( owner, this, ( char * )args[ 0 ], ( char * )args[ 1 ], ( mlt_service )args[ 2 ] );
+               listener( owner, self, ( char * )args[ 0 ], ( char * )args[ 1 ], ( mlt_service )args[ 2 ] );
 }
 
 /** Construct the repository and factories.