#include "wx/msw/private.h" // includes windows.h for MessageBox()
#endif
+#if defined(__WXMAC__)
+ #include "wx/mac/private.h" // includes mac headers
+#endif
+
// ===========================================================================
// implementation
// ===========================================================================
#endif // wxUSE_GUI
}
+wxAppBase::~wxAppBase()
+{
+ // this destructor is required for Darwin
+}
+
#if wxUSE_GUI
bool wxAppBase::OnInitGui()
{
OnInitCmdLine(parser);
bool cont;
- switch ( parser.Parse() )
+ switch ( parser.Parse(FALSE /* don't show usage */) )
{
case -1:
cont = OnCmdLineHelp(parser);
return FALSE;
}
- if ( !SetDisplayMode(wxDisplayModeInfo(wxSize(w, h), bpp)) )
+ if ( !SetDisplayMode(wxDisplayModeInfo(w, h, bpp)) )
return FALSE;
}
-#endif
+#endif // __WXMGL__
return TRUE;
}