]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/toplvcmn.cpp
added missing WXDLLEXPORT
[wxWidgets.git] / src / common / toplvcmn.cpp
index 0e21ec247b808ce94154ce991a6b915c2be2853c..865d29f444346ef954ae4e5da13215471e132b7e 100644 (file)
@@ -113,14 +113,12 @@ void wxTopLevelWindowBase::DoClientToScreen(int *x, int *y) const
 // whole client area
 void wxTopLevelWindowBase::OnSize(wxSizeEvent& WXUNUSED(event))
 {
-    // if we're using constraints - do use them
-#if wxUSE_CONSTRAINTS
+    // if we're using constraints or sizers - do use them
     if ( GetAutoLayout() )
     {
         Layout();
     }
     else
-#endif // wxUSE_CONSTRAINTS
     {
         // do we have _exactly_ one child?
         wxWindow *child = (wxWindow *)NULL;
@@ -137,9 +135,6 @@ void wxTopLevelWindowBase::OnSize(wxSizeEvent& WXUNUSED(event))
             {
                 if ( child )
                 {
-#ifdef __WXPM__
-                    AlterChildPos();
-#endif
                     return;     // it's our second subwindow - nothing to do
                 }
 
@@ -163,9 +158,6 @@ void wxTopLevelWindowBase::OnSize(wxSizeEvent& WXUNUSED(event))
 #endif
 
             child->SetSize(ofs, ofs, clientW - 2*ofs, clientH - 2*ofs);
-#ifdef __WXPM__
-            UpdateInternalSize(child, clientH);
-#endif
         }
     }
 }