Removed extra space from version.cpp

Originally committed to SVN as r383.
This commit is contained in:
Rodrigo Braz Monteiro 2006-05-10 05:03:33 +00:00
parent 5b6d4de6be
commit 10ae56ff7f
1 changed files with 1 additions and 1 deletions

View File

@ -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(""));