Removed extra space from version.cpp
Originally committed to SVN as r383.
This commit is contained in:
parent
5b6d4de6be
commit
10ae56ff7f
1 changed files with 1 additions and 1 deletions
|
@ -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(""));
|
||||
|
|
Loading…
Reference in a new issue