]> git.sesse.net Git - mlt/commitdiff
Constness changes
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 10 Apr 2009 07:23:49 +0000 (07:23 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 10 Apr 2009 07:23:49 +0000 (07:23 +0000)
Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++@1391 d19143bc-622f-0410-bfdd-b5b2a6649095

mlt++/src/MltProperties.cpp
mlt++/src/MltPushConsumer.cpp

index f1b2b562f3194b309d9a4ec9a33976564bd77aa2..4b7dd0e864c027969bbed961e0737ee61b1ee0fe 100644 (file)
@@ -28,7 +28,7 @@ Properties::Properties( ) :
        instance = mlt_properties_new( );
 }
 
-Properties::Properties( bool dummy ) :
+Properties::Properties( bool /*dummy*/ ) :
        instance( NULL )
 {
 }
index 041687f111cfc8a6dbe95e152051277b5ea179e9..d8465ba0d43ae72bec8bb51cc4a7744bda95eb9c 100644 (file)
@@ -85,7 +85,7 @@ void PushConsumer::set_render( int width, int height, double aspect_ratio )
        set( "render_aspect_ratio", aspect_ratio );
 }
 
-int PushConsumer::connect( Service &service )
+int PushConsumer::connect( Service &/*service*/ )
 {
        return -1;
 }