]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/app.cpp
Fixed a '(' that should have been a '{'
[wxWidgets.git] / src / mgl / app.cpp
index dffb68253cd5086a2f005231e6c4cf07ffa376e0..d444527ccfa83a0cf5b1d8dae89a9ec800a77161 100644 (file)
@@ -147,7 +147,7 @@ static wxRootWindow *gs_rootWindow = NULL;
 // MGL initialization
 //-----------------------------------------------------------------------------
 
 // MGL initialization
 //-----------------------------------------------------------------------------
 
-static bool wxCreateMGL_WM(const wxDisplayModeInfo& displayMode)
+static bool wxCreateMGL_WM(const wxVideoMode& displayMode)
 {
     int mode;
     int refresh = MGL_DEFAULT_REFRESH;
 {
     int mode;
     int refresh = MGL_DEFAULT_REFRESH;
@@ -216,7 +216,7 @@ wxApp::~wxApp()
 {
 }
 
 {
 }
 
-wxDisplayModeInfo wxGetDefaultDisplayMode()
+wxVideoMode wxGetDefaultDisplayMode()
 {
     wxString mode;
     unsigned w, h, bpp;
 {
     wxString mode;
     unsigned w, h, bpp;
@@ -227,10 +227,10 @@ wxDisplayModeInfo wxGetDefaultDisplayMode()
         w = 640, h = 480, bpp = 16;
     }
 
         w = 640, h = 480, bpp = 16;
     }
 
-    return wxDisplayModeInfo(w, h, bpp);
+    return wxVideoMode(w, h, bpp);
 }
 
 }
 
-bool wxApp::SetDisplayMode(const wxDisplayModeInfo& mode)
+bool wxApp::SetDisplayMode(const wxVideoMode& mode)
 {
     if ( !mode.IsOk() )
     {
 {
     if ( !mode.IsOk() )
     {
@@ -272,11 +272,6 @@ bool wxApp::OnInitGui()
     return TRUE;
 }
 
     return TRUE;
 }
 
-bool wxApp::Initialized()
-{
-    return wxTopLevelWindows.GetCount() != 0;
-}
-
 bool wxApp::Initialize(int& argc, wxChar **argv)
 {
 #ifdef __DJGPP__
 bool wxApp::Initialize(int& argc, wxChar **argv)
 {
 #ifdef __DJGPP__