#include "wx/wx.h"
#endif
-#include "wx/tab.h"
#include "test.h"
// If 1, use a dialog. Otherwise use a frame.
#else
frame = new MyFrame((wxFrame*) NULL, -1, (char *) "Notebook", wxPoint(-1, -1), wxSize(365, 390), wxDEFAULT_FRAME_STYLE);
- // Problem with Motif whereby it doesn't size properly unless
- // you set the size again (to a different size than before,
- // since SetSize is optimized)
-#ifdef __WXMOTIF__
- frame->SetSize(-1, -1, 370, 390);
+ // Problem with generic wxNotebook implementation whereby it doesn't size properly unless
+ // you set the size again
+#if defined(__WIN16__)
+ int width, height;
+ frame->GetSize(& width, & height);
+ frame->SetSize(-1, -1, width, height);
#endif
return TRUE;