]> git.saurik.com Git - wxWidgets.git/commitdiff
make sure ShowEvent doesn't get triggered to early during construction
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 3 Mar 2010 16:33:12 +0000 (16:33 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 3 Mar 2010 16:33:12 +0000 (16:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/iphone/private.h

index 5db08c64aa95db774160173050965bd9e54f37c8..73376eac684d9198b1301cf36372af315428e031 100644 (file)
@@ -173,9 +173,12 @@ public :
     virtual bool IsActive() { return true; }
     
     wxNonOwnedWindow*   GetWXPeer() { return m_wxPeer; }
+
+    virtual bool InitialShowEventSent() { return m_initialShowSent; }
 protected :
     WX_UIWindow          m_macWindow;
     void *              m_macFullScreenData ;
+    bool                m_initialShowSent;
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxNonOwnedWindowIPhoneImpl)
 };