]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
EXPORTED an array to quiet the DLL compilation
[wxWidgets.git] / src / msw / notebook.cpp
index f8d4ed27d1877dd88c3227913994b5e0ddb1439e..4dd386361cc1a6403872bc416837dfdc1f87aa5e 100644 (file)
@@ -414,8 +414,6 @@ bool wxNotebook::InsertPage(int nPage,
   GetSize((int *)&rc.right, (int *)&rc.bottom);
   TabCtrl_AdjustRect(m_hwnd, FALSE, &rc);
   pPage->SetSize(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top);
-  if ( pPage->GetAutoLayout() )
-      pPage->Layout();
 
 
   // some page should be selected: either this one or the first one if there is
@@ -448,8 +446,6 @@ void wxNotebook::OnSize(wxSizeEvent& event)
   for ( size_t nPage = 0; nPage < nCount; nPage++ ) {
     wxNotebookPage *pPage = m_aPages[nPage];
     pPage->SetSize(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top);
-    if ( pPage->GetAutoLayout() )
-      pPage->Layout();
   }
 
   event.Skip();