- use system background color instead of fixed one

- TODO: apply to buttons (still bitmaps)

svn path=/trunk/; revision=40952
This commit is contained in:
Matthias Kupfer
2009-05-17 11:28:40 +00:00
parent 1e802df856
commit 1dbdcfbeab
@@ -51,7 +51,7 @@ int WINAPI _tWinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPTSTR cmdline, int
wc.hInstance = hInst;
wc.hIcon = LoadIcon( hInst, MAKEINTRESOURCE(IDI_WINEMINE) );
wc.hCursor = LoadCursor( NULL, (LPCTSTR)IDI_APPLICATION );
wc.hbrBackground = (HBRUSH) GetStockObject( LTGRAY_BRUSH );
wc.hbrBackground = GetSysColorBrush(COLOR_BTNFACE);
wc.lpszMenuName = MAKEINTRESOURCE(IDM_WINEMINE);
wc.lpszClassName = szAppName;