From 2ade9eb81180c4ae0f795e8a8e93e0d981881898 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 6 Jul 2014 14:56:30 +0000 Subject: [PATCH] added missing impl git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/iphone/private.h | 2 ++ src/osx/iphone/nonownedwnd.mm | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/include/wx/osx/iphone/private.h b/include/wx/osx/iphone/private.h index e21dd388b0..1b7c30f94a 100644 --- a/include/wx/osx/iphone/private.h +++ b/include/wx/osx/iphone/private.h @@ -167,6 +167,8 @@ public : virtual bool IsFullScreen() const; + virtual bool EnableFullScreenView(bool enable); + virtual bool ShowFullScreen(bool show, long style); virtual void RequestUserAttention(int flags); diff --git a/src/osx/iphone/nonownedwnd.mm b/src/osx/iphone/nonownedwnd.mm index b7082f89c8..30eb710a36 100644 --- a/src/osx/iphone/nonownedwnd.mm +++ b/src/osx/iphone/nonownedwnd.mm @@ -284,6 +284,11 @@ bool wxNonOwnedWindowIPhoneImpl::IsFullScreen() const return m_macFullScreenData != NULL ; } +bool wxNonOwnedWindowIPhoneImpl::EnableFullScreenView(bool WXUNUSED(enable)) +{ + return true; +} + bool wxNonOwnedWindowIPhoneImpl::ShowFullScreen(bool show, long style) { return true;