]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/notebook/test.cpp
latest CW additions
[wxWidgets.git] / samples / notebook / test.cpp
index 7ee1dfb3e86db99c27bb2d3cddd76c4916534462..4070a935bd20c305ae892b16a087c189aad8b0ce 100644 (file)
@@ -44,9 +44,11 @@ bool MyApp::OnInit(void)
   frame = new MyFrame((wxFrame*) NULL, -1, (char *) "Notebook", wxPoint(-1, -1), wxSize(365, 390), wxDEFAULT_FRAME_STYLE);
 
   // Problem with generic wxNotebook implementation whereby it doesn't size properly unless
-  // you set the size again (to a different size than before, since SetSize is optimized)
-#if defined(__WXMOTIF__) || defined(__WIN16__)
-  frame->SetSize(-1, -1, 370, 390);
+  // you set the size again
+#if defined(__WIN16__)
+  int width, height;
+  frame->GetSize(& width, & height);
+  frame->SetSize(-1, -1, width, height);
 #endif
 
   return TRUE;