Modified version string to say "RELEASE PREVIEW" instead of "PRE-RELEASE".

Originally committed to SVN as r1847.
This commit is contained in:
Rodrigo Braz Monteiro 2008-01-26 20:41:44 +00:00
parent db1de1a8e0
commit f6a7c5c98a
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ struct VersionInfoStruct {
#else
IsRelease = false;
#endif
VersionStr = wxString::Format(_T("%s%s"), VersionNumber, IsRelease ? _T("") : _T(" PRE-RELEASE"));
VersionStr = wxString::Format(_T("%s%s"), VersionNumber, IsRelease ? _T("") : _T(" RELEASE PREVIEW"));
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(""));