mirror of https://github.com/odrling/Aegisub
Removed extra space from version.cpp
Originally committed to SVN as r383.
This commit is contained in:
parent
5b6d4de6be
commit
10ae56ff7f
|
@ -95,7 +95,7 @@ struct VersionInfoStruct {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
IsRelease = SvnRev < 0;
|
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);
|
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(""));
|
ShortVersionString = wxString::Format(_T("%s %s%s"), VersionStr.c_str(), SCMStr.c_str(), IsDebug ? _T(" debug") : _T(""));
|
||||||
|
|
Loading…
Reference in New Issue