Added some makefiles, cured some wxMotif bugs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-01-10 23:28:36 +00:00
parent 247aba1065
commit ee4c6942b4
14 changed files with 123 additions and 148 deletions

View 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;