From: Vadim Zeitlin Date: Fri, 19 Nov 2004 20:36:23 +0000 (+0000) Subject: always return solid background for listbox X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/012e1eebae087f1887aa330fa80052383424db09 always return solid background for listbox git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/listbox.h b/include/wx/msw/listbox.h index d0acdcb949..e8c921e6a4 100644 --- a/include/wx/msw/listbox.h +++ b/include/wx/msw/listbox.h @@ -143,6 +143,11 @@ public: protected: WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; + virtual WXHBRUSH MSWControlColor(WXHDC pDC) + { + return MSWControlColorSolid(pDC); + } + // free memory (common part of Clear() and dtor) void Free();