Update of /cvsroot/audacity/audacity-src/src/export In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv346
Modified Files: ExportFFmpeg.cpp Log Message: Fix passing an object of non-POD type 'class wxString' to a '...' call, in this case passing a wxString object to wxString::Format with a "%s" argument. Index: ExportFFmpeg.cpp =================================================================== RCS file: /cvsroot/audacity/audacity-src/src/export/ExportFFmpeg.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- ExportFFmpeg.cpp 4 Aug 2008 16:28:46 -0000 1.26 +++ ExportFFmpeg.cpp 4 Aug 2008 19:39:10 -0000 1.27 @@ -1731,7 +1731,7 @@ } if (!found) { - wxMessageBox(wxString::Format(wxT("Preset '%s' does not exists"),presetname)); + wxMessageBox(wxString::Format(wxT("Preset '%s' does not exists"),presetname.c_str())); return; } ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Audacity-cvs mailing list Audacity-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/audacity-cvs