From: Stefan Csomor Date: Sat, 3 Apr 2010 09:49:10 +0000 (+0000) Subject: no special casing for iphone necessary X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7b896860bf278d10ef80d05e5ae607604819a4e6 no special casing for iphone necessary git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/nonownedwnd_osx.cpp b/src/osx/nonownedwnd_osx.cpp index 017107215f..54ecb11f6d 100644 --- a/src/osx/nonownedwnd_osx.cpp +++ b/src/osx/nonownedwnd_osx.cpp @@ -424,12 +424,7 @@ void wxNonOwnedWindow::DoGetClientSize( int *width, int *height ) const return; int left, top, w, h; - // perhaps we should do this for all ? -#ifdef __WXOSX_IPHONE__ - m_peer->GetContentArea(left, top, w, h); -#else m_nowpeer->GetContentArea(left, top, w, h); -#endif if (width) *width = w ;