// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-// #pragma implementation
-#endif
-
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
// X seems to require a forced resize
int x, y;
frame->GetSize(&x, &y);
- frame->SetSize(wxDefaultPosition.x, wxDefaultPosition.y, x, y);
+ frame->SetSize(wxDefaultCoord, wxDefaultCoord, x, y);
#endif
frame->Show(true);
Activate(true);
// X seems to require a forced resize
int x, y;
frame->GetSize(&x, &y);
- frame->SetSize(wxDefaultPosition.x, wxDefaultPosition.y, x, y);
+ frame->SetSize(wxDefaultCoord, wxDefaultCoord, x, y);
#endif
frame->Show(true);