From: dooglus Date: Wed, 20 Feb 2008 18:21:07 +0000 (+0000) Subject: As before, the date is sufficient. We don't need to keep rebuilding this just to... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=be4e412484b7b133bc7b883d9ecc01a75a9ce2f2;p=synfig.git As before, the date is sufficient. We don't need to keep rebuilding this just to get the current time in the splash screen or about dialog. git-svn-id: http://svn.voria.com/code@1792 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/about.cpp b/synfig-studio/trunk/src/gtkmm/about.cpp index 178602b..cb1915f 100644 --- a/synfig-studio/trunk/src/gtkmm/about.cpp +++ b/synfig-studio/trunk/src/gtkmm/about.cpp @@ -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"; diff --git a/synfig-studio/trunk/src/gtkmm/splash.cpp b/synfig-studio/trunk/src/gtkmm/splash.cpp index 3f62635..c8130ac 100644 --- a/synfig-studio/trunk/src/gtkmm/splash.cpp +++ b/synfig-studio/trunk/src/gtkmm/splash.cpp @@ -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__