From: Stefan Csomor Date: Wed, 25 Mar 2009 09:46:08 +0000 (+0000) Subject: making method properly const X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/938fbc8f74d393dc051fa5c80972e29ccdb2c500 making method properly const git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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 ) ;