From 1eb71e4efba349c590edcc76ec277077eda687f9 Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Tue, 17 Feb 2004 04:23:45 +0000 Subject: [PATCH] Backport: Fixed invalid background colour of controls on a notebookpage when using certain XP themes/WindowBlinds skins (bug 897965). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@25841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/notebook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/notebook.cpp b/src/msw/notebook.cpp index 905131d390..aaa4c35864 100644 --- a/src/msw/notebook.cpp +++ b/src/msw/notebook.cpp @@ -704,7 +704,7 @@ wxColour wxNotebookGetThemeBackgroundColour(wxNotebook* notebook) m_pfnGetThemeColor(hTheme, 10 /* TABP_BODY */, 1 /* NORMAL */, - 3821, /* FILLCOLORHINT */ + 3802 /* color of bg fill */, & themeColor); wxUxThemeEngine::Get()->m_pfnCloseThemeData(hTheme);