From 10ae56ff7f23a1906b99beecae858eb4239b3685 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Wed, 10 May 2006 05:03:33 +0000 Subject: [PATCH] Removed extra space from version.cpp Originally committed to SVN as r383. --- core/version.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/version.cpp b/core/version.cpp index 67bf889b4..026132f94 100644 --- a/core/version.cpp +++ b/core/version.cpp @@ -95,7 +95,7 @@ struct VersionInfoStruct { #endif IsRelease = SvnRev < 0; - VersionStr = wxString::Format(_T("%s %s"), VersionNumber, IsRelease ? _T(" beta") : _T(" PRE-RELEASE")); + VersionStr = wxString::Format(_T("%s %s"), VersionNumber, IsRelease ? _T("beta") : _T("PRE-RELEASE")); LongVersionString = wxString::Format(_T("%s (%s%s, %s)"), VersionStr.c_str(), IsDebug ? _T("debug, ") : _T(""), SCMStr.c_str(), BuildCredit); ShortVersionString = wxString::Format(_T("%s %s%s"), VersionStr.c_str(), SCMStr.c_str(), IsDebug ? _T(" debug") : _T(""));