]> git.sesse.net Git - mlt/commitdiff
Add Properties::set_lcnumeric().
authorDan Dennedy <dan@dennedy.org>
Sat, 9 Jul 2011 19:36:42 +0000 (12:36 -0700)
committerDan Dennedy <dan@dennedy.org>
Sat, 9 Jul 2011 19:38:07 +0000 (12:38 -0700)
src/mlt++/MltProperties.cpp
src/mlt++/MltProperties.h

index b2ae778cd20fe7fb2c9040fc2022e1733e5016ee..c7fcb6cfa3167793b28e55edba88b86da55e8392 100644 (file)
@@ -322,3 +322,7 @@ int Properties::preset( const char *name )
        return mlt_properties_preset( get_properties(), name );
 }
 
+int Properties::set_lcnumeric( const char *locale )
+{
+       return mlt_properties_set_lcnumeric( get_properties(), locale );
+}
index 8956a56c5032c230405eea9a1da115db8421eaf5..af8cbbec4554b37b9bfa58019274bda7363aee70 100644 (file)
@@ -94,6 +94,7 @@ namespace Mlt
                        static Properties *parse_yaml( const char *file );
                        char *serialise_yaml( );
                        int preset( const char *name );
+                       int set_lcnumeric( const char *locale );
        };
 }