From 938fbc8f74d393dc051fa5c80972e29ccdb2c500 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 25 Mar 2009 09:46:08 +0000 Subject: [PATCH] making method properly const git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/window.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/osx/window.h b/include/wx/osx/window.h index d5693becf3..4152f18329 100644 --- a/include/wx/osx/window.h +++ b/include/wx/osx/window.h @@ -198,7 +198,10 @@ public: bool MacIsReallyEnabled() ; bool MacIsReallyHilited() ; +#if WXWIN_COMPATIBILITY_2_8 bool MacIsUserPane() { return m_macIsUserPane; } +#endif + bool MacIsUserPane() const { return m_macIsUserPane; } virtual bool MacSetupCursor( const wxPoint& pt ) ; -- 2.47.2