From b2d22a3f0487d02fbc2c966820fee222253fa702 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 13 Apr 2004 10:44:53 +0000 Subject: [PATCH] (blind) compilation fix for wxUniv git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/univ/window.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/univ/window.h b/include/wx/univ/window.h index 9bb9477eb1..b352f7ff07 100644 --- a/include/wx/univ/window.h +++ b/include/wx/univ/window.h @@ -193,6 +193,9 @@ public: // we refresh the window when it is dis/enabled virtual bool Enable(bool enable = TRUE); + // should we use the standard control colours or not? + virtual bool ShouldInheritColours() const { return false; } + protected: // common part of all ctors void Init();