8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00

Temporary fix for CORE-2828

Update major.minor version string that displays in the system-level Control Panel screen
This commit is contained in:
paul_reeves 2010-02-01 10:14:31 +00:00
parent 3e38f45a56
commit 27df447bb1

View File

@ -58,8 +58,8 @@ LONG CFBPanel::OnInquire(UINT /*uAppNum*/, NEWCPLINFO* pInfo)
pInfo->lData = 0;
pInfo->hIcon = ::LoadIcon(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ICON1));
// Shouldn't this read FB 2 without fixing the minor version?
strcpy(pInfo->szName, "Firebird 2.0 Server Manager");
strcpy(pInfo->szInfo, "Configure Firebird 2.0 Database Server");
strcpy(pInfo->szName, "Firebird 2.5 Server Manager");
strcpy(pInfo->szInfo, "Configure Firebird 2.5 Database Server");
strcpy(pInfo->szHelpFile, "");
return 0; // OK (don't send CPL_INQUIRE msg)
}