From 245c5d2e02f338927e4099adc56ece165aeb5924 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 17 Apr 2004 02:06:11 +0000 Subject: [PATCH] Make InheritAttributes and ShouldInheritColours public so they can be called from derived Python classes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/window.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/wx/window.h b/include/wx/window.h index bdf6b7cab6..d081cd409c 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -989,11 +989,6 @@ public: wxWindow *GetAncestorWithCustomPalette() const; #endif // wxUSE_PALETTE -protected: - // event handling specific to wxWindow - virtual bool TryValidator(wxEvent& event); - virtual bool TryParent(wxEvent& event); - // inherit the parents visual attributes if they had been explicitly set // by the user (i.e. we don't inherit default attributes) and if we don't // have our own explicitly set @@ -1006,6 +1001,11 @@ protected: // behaviour in the most common case virtual bool ShouldInheritColours() const { return false; } +protected: + // event handling specific to wxWindow + virtual bool TryValidator(wxEvent& event); + virtual bool TryParent(wxEvent& event); + #if wxUSE_CONSTRAINTS // satisfy the constraints for the windows but don't set the window sizes -- 2.47.2