]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/toplvcmn.cpp
Add support for MSW unique volume names to wxFileName.
[wxWidgets.git] / src / common / toplvcmn.cpp
index 9a6688dd4e26f11ed9d555d9732e10ca0362b45f..c45dd1d55ed0388b2ca09481cafa698bb488bfbc 100644 (file)
@@ -202,7 +202,7 @@ void wxTopLevelWindowBase::GetRectForTopLevelChildren(int *x, int *y, int *w, in
 wxSize wxTopLevelWindowBase::GetDefaultSize()
 {
     wxSize size = wxGetClientDisplayRect().GetSize();
-
+#ifndef __WXOSX_IPHONE__
     // create proportionally bigger windows on small screens
     if ( size.x >= 1024 )
         size.x = 400;
@@ -218,7 +218,7 @@ wxSize wxTopLevelWindowBase::GetDefaultSize()
         size.y *= 2;
         size.y /= 3;
     }
-
+#endif
     return size;
 }