# HG changeset patch # User Teemu Piippo # Date 1406629008 -10800 # Node ID b6b1afacb7c1d1e87961eab0d93daf8381373841 # Parent e629838814607d4834d6c13343d13e1161fb0037 - use less verbose commit time/version string in the window title diff -r e62983881460 -r b6b1afacb7c1 src/mainWindow.cc --- a/src/mainWindow.cc Tue Jul 29 13:12:22 2014 +0300 +++ b/src/mainWindow.cc Tue Jul 29 13:16:48 2014 +0300 @@ -250,7 +250,7 @@ // void MainWindow::updateTitle() { - QString title = format (APPNAME " %1", fullVersionString()); + QString title = format (APPNAME " %1", versionString()); // Append our current file if we have one if (getCurrentDocument()) diff -r e62983881460 -r b6b1afacb7c1 src/version.cc --- a/src/version.cc Tue Jul 29 13:12:22 2014 +0300 +++ b/src/version.cc Tue Jul 29 13:16:48 2014 +0300 @@ -70,7 +70,7 @@ if (g_buildTime[0] == '\0') { time_t timestamp = SVN_REVISION_NUMBER; - strftime (g_buildTime, sizeof g_buildTime, "%d %b %Y %T", localtime (×tamp)); + strftime (g_buildTime, sizeof g_buildTime, "%d %b %Y", localtime (×tamp)); } #endif