]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/nonownedwnd_osx.cpp
Explicitly set "C" locale for the tests using decimal point.
[wxWidgets.git] / src / osx / nonownedwnd_osx.cpp
index 15b275ef6f1082d15bcf616e1440a00d00ee3c83..e2543dff277eb3a9579cabba74ac094da9bbdc99 100644 (file)
@@ -467,7 +467,9 @@ void wxNonOwnedWindow::DoGetClientSize( int *width, int *height ) const
         return;
 
     int left, top, w, h;
-    // perhaps we should do this for all ?
+    // under iphone with a translucent status bar the m_nowpeer returns the
+    // inner area, while the content area extends under the translucent
+    // status bar, therefore we use the content view's area
 #ifdef __WXOSX_IPHONE__
     m_peer->GetContentArea(left, top, w, h);
 #else