As before, the date is sufficient. We don't need to keep rebuilding this just to...
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 20 Feb 2008 18:21:07 +0000 (18:21 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 20 Feb 2008 18:21:07 +0000 (18:21 +0000)
git-svn-id: http://svn.voria.com/code@1792 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/gtkmm/about.cpp
synfig-studio/trunk/src/gtkmm/splash.cpp

index 178602b..cb1915f 100644 (file)
@@ -188,7 +188,7 @@ About::About()
        
        extra_info += "\n";
        
-       extra_info += strprintf(_("Built on %s at %s\n"), __DATE__, __TIME__);
+       extra_info += strprintf(_("Built on %s" /* at %s */ "\n"), __DATE__ /* , __TIME__ */ );
 
        extra_info += "\n";
 
index 3f62635..c8130ac 100644 (file)
@@ -229,7 +229,7 @@ Splash::Splash():
 
        // Set the version label to contain the correct information
        string ver;
-       ver+="Version "VERSION" ("__DATE__" "__TIME__")\n";
+       ver+="Version "VERSION" ("__DATE__ /* " "__TIME__ */ ")\n";
        ver+="Using Synfig ";
        ver+=synfig::get_version();
        #ifdef __GNUC__