From baeccb02dabe525217593f9f575d36882c36be76 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 27 Mar 2013 00:38:36 +0200 Subject: Bypass fields that are meaningless for iOS Change-Id: I66acafc1f7302242a2a43271b909bba331062bce --- vcl/source/window/syschild.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl/source/window/syschild.cxx') diff --git a/vcl/source/window/syschild.cxx b/vcl/source/window/syschild.cxx index 93086e950abb..7cca6792edb5 100644 --- a/vcl/source/window/syschild.cxx +++ b/vcl/source/window/syschild.cxx @@ -221,11 +221,11 @@ sal_IntPtr SystemChildWindow::GetParentWindowHandle( sal_Bool bUseJava ) (void)bUseJava; #if defined WNT nRet = reinterpret_cast< sal_IntPtr >( GetSystemData()->hWnd ); - (void)bUseJava; #elif defined MACOSX // FIXME: this is wrong nRet = reinterpret_cast< sal_IntPtr >( GetSystemData()->pView ); - (void)bUseJava; +#elif defined IOS + // Nothing #elif defined UNX if( !bUseJava ) { -- cgit