Commit b901c8db authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

shdocvw: Fix the COLOR_xxx usage.

parent 6b476208
......@@ -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
};
......
......@@ -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
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment