]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appcmn.cpp
Fixes for GNUPro 00r1
[wxWidgets.git] / src / common / appcmn.cpp
index 49c21fe4693de9d9a9eb7c003f9c412f90ddbbfa..59e2ef34c69cd746cfb487dd7b389561b702392d 100644 (file)
   #include  "wx/msw/private.h"  // includes windows.h for MessageBox()
 #endif
 
+#if defined(__WXMAC__)
+  #include  "wx/mac/private.h"  // includes mac headers
+#endif
+
 // ===========================================================================
 // implementation
 // ===========================================================================
@@ -166,7 +170,7 @@ bool wxAppBase::OnInit()
     OnInitCmdLine(parser);
 
     bool cont;
-    switch ( parser.Parse() )
+    switch ( parser.Parse(FALSE /* don't show usage */) )
     {
         case -1:
             cont = OnCmdLineHelp(parser);
@@ -284,10 +288,10 @@ bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser)
             return FALSE;
         }
 
-        if ( !SetDisplayMode(wxDisplayModeInfo(wxSize(w, h), bpp)) )
+        if ( !SetDisplayMode(wxDisplayModeInfo(w, h, bpp)) )
             return FALSE;
     }
-#endif
+#endif // __WXMGL__
 
     return TRUE;
 }