From 878357d8f750a80a9bc7eb6082b8587bf5517280 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 3 Mar 2010 16:33:12 +0000 Subject: [PATCH] make sure ShowEvent doesn't get triggered to early during construction git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/iphone/private.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/osx/iphone/private.h b/include/wx/osx/iphone/private.h index 5db08c64aa..73376eac68 100644 --- a/include/wx/osx/iphone/private.h +++ b/include/wx/osx/iphone/private.h @@ -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) }; -- 2.45.2