shdocvw: Fix the COLOR_xxx usage.

This commit is contained in:
Dmitry Timoshkov 2008-11-12 15:15:51 +08:00 committed by Alexandre Julliard
parent 6b4762086a
commit b901c8db5a
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ void create_doc_view_hwnd(DocHost *This)
CS_PARENTDC,
doc_view_proc,
0, 0 /* native uses 4*/, NULL, NULL, NULL,
(HBRUSH)COLOR_WINDOWFRAME, NULL,
(HBRUSH)(COLOR_WINDOW + 1), NULL,
wszShell_DocObject_View,
NULL
};

View File

@ -83,7 +83,7 @@ static void create_shell_embedding_hwnd(WebBrowser *This)
CS_DBLCLKS,
shell_embedding_proc,
0, 0 /* native uses 8 */, NULL, NULL, NULL,
(HBRUSH)COLOR_WINDOWFRAME, NULL,
(HBRUSH)(COLOR_WINDOW + 1), NULL,
wszShellEmbedding,
NULL
};