]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/tab/test.cpp
one day people will stop putting C++ comments in C files
[wxWidgets.git] / samples / tab / test.cpp
index 5c9fd419e3535a1d06c1af4dcf73a1365fe96007..1c2f6fd5530f1b970d072aa26d38b94f6aaff227 100644 (file)
@@ -24,7 +24,7 @@
 #include "test.h"
 
 // If 1, use a dialog. Otherwise use a frame.
-#define USE_TABBED_DIALOG 0
+#define USE_TABBED_DIALOG 1
 
 MyDialog* dialog = (MyDialog *) NULL;
 MyFrame*  frame = (MyFrame *) NULL;
@@ -240,7 +240,7 @@ void MyFrame::OnSize(wxSizeEvent& event)
   
         m_view->SetViewRect(rect);
 
-        m_view->Layout();
+        m_view->LayoutTabs();
 
         // Need to do it a 2nd time to get the tab height with
         // the new view width
@@ -252,7 +252,7 @@ void MyFrame::OnSize(wxSizeEvent& event)
   
         m_view->SetViewRect(rect);
 
-        m_view->Layout();
+        m_view->LayoutTabs();
 
         // Move all the panels to the new view position and size
         wxNode* node = m_view->GetWindows().First();