Use the firely logo on the about page.

This commit is contained in:
Mike Crowe
2006-05-30 19:47:01 +00:00
parent 86cc769b2d
commit 1fe21b7686
5 changed files with 44 additions and 11 deletions

View File

@@ -132,4 +132,15 @@ LRESULT CAboutPage::OnCopy(WORD, WORD, HWND, BOOL &)
CloseClipboard();
}
return 0;
}
LRESULT CAboutPage::OnCtlColorStatic(HDC hdc, HWND hwnd)
{
if (GetDlgItem(IDC_LOGO) == hwnd)
{
HBRUSH brush = (HBRUSH)::GetStockObject(WHITE_BRUSH);
return (LRESULT)brush;
}
else
return 0;
}