Revision: 2223
          http://synfig.svn.sourceforge.net/synfig/?rev=2223&view=rev
Author:   dooglus
Date:     2008-11-19 13:45:27 +0000 (Wed, 19 Nov 2008)

Log Message:
-----------
The compiler was warning "format not a string literal and no format arguments".

Modified Paths:
--------------
    synfig-studio/trunk/src/gtkmm/layerparamtreestore.cpp
    synfig-studio/trunk/src/gtkmm/layertreestore.cpp

Modified: synfig-studio/trunk/src/gtkmm/layerparamtreestore.cpp
===================================================================
--- synfig-studio/trunk/src/gtkmm/layerparamtreestore.cpp       2008-11-19 
13:45:05 UTC (rev 2222)
+++ synfig-studio/trunk/src/gtkmm/layerparamtreestore.cpp       2008-11-19 
13:45:27 UTC (rev 2223)
@@ -286,7 +286,7 @@
        }
        catch(std::exception x)
        {
-               g_warning(x.what());
+               g_warning("%s", x.what());
        }
 }
 

Modified: synfig-studio/trunk/src/gtkmm/layertreestore.cpp
===================================================================
--- synfig-studio/trunk/src/gtkmm/layertreestore.cpp    2008-11-19 13:45:05 UTC 
(rev 2222)
+++ synfig-studio/trunk/src/gtkmm/layertreestore.cpp    2008-11-19 13:45:27 UTC 
(rev 2223)
@@ -351,7 +351,7 @@
        }
        catch(std::exception x)
        {
-               g_warning(x.what());
+               g_warning("%s", x.what());
        }
 }
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
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=/
_______________________________________________
Synfig-devl mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synfig-devl

Reply via email to