- Some changes for online manual.

- About dialog now indicates "Beta" or not beta on version information.
This commit is contained in:
spx
2010-08-05 17:48:52 +00:00
parent cce8a5ead4
commit 98c1f70f17
3 changed files with 10 additions and 6 deletions

View File

@ -292,7 +292,7 @@ BOOL OnInitAboutDialog(HWND window)
HWND widget;
widget = GetDlgItem(window, IDC_VERSION_STRING);
swprintf(tmpSz, L"%s %s rev %i %s", APPNAME, APPVERSION, revision_number, APPBITS);
swprintf(tmpSz, L"%s %s%s rev %i %s", APPNAME, APPVERSION, revision_beta ? L" Beta" : L"", revision_number, APPBITS);
SetWindowText(widget, tmpSz);
widget = GetDlgItem(window, IDC_BUILD_STRING);