From 3623888929a477f8e552511fab8b732389b544ff Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Thu, 17 Oct 2013 16:37:28 +0000 Subject: [PATCH] make m_modalShowing private git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75030 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/gtk/dialog.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/include/wx/gtk/dialog.h b/include/wx/gtk/dialog.h index bc6e8625bd..fcd7cd3db8 100644 --- a/include/wx/gtk/dialog.h +++ b/include/wx/gtk/dialog.h @@ -39,15 +39,13 @@ public: virtual void EndModal( int retCode ); virtual bool IsModal() const; - // implementation - // -------------- - - bool m_modalShowing; - private: // common part of all ctors void Init(); + + bool m_modalShowing; wxGUIEventLoop *m_modalLoop; + DECLARE_DYNAMIC_CLASS(wxDialog) };