]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/app.cpp
fix conversion of gdk_input_add() to g_io_add_watch() from r67326
[wxWidgets.git] / src / mgl / app.cpp
index 113516fe7101cf830724af47bc7535c2ab4836de..753d2df7f6641250f057f94a354183f54bb9ac1b 100644 (file)
@@ -120,8 +120,7 @@ static bool wxCreateMGL_WM(const wxVideoMode& displayMode)
     g_displayDC = new MGLDisplayDC(mode, 1, refresh);
     if ( !g_displayDC->isValid() )
     {
-        delete g_displayDC;
-        g_displayDC = NULL;
+        wxDELETE(g_displayDC);
         return false;
     }
 
@@ -139,11 +138,7 @@ static void wxDestroyMGL_WM()
         MGL_wmDestroy(g_winMng);
         g_winMng = NULL;
     }
-    if ( g_displayDC )
-    {
-        delete g_displayDC;
-        g_displayDC = NULL;
-    }
+    wxDELETE(g_displayDC);
 }
 
 //-----------------------------------------------------------------------------
@@ -202,7 +197,7 @@ bool wxApp::OnInitGui()
     if ( !wxAppBase::OnInitGui() )
         return false;
 
-    // MGL redirects stdout and stderr to physical console, so lets redirect
+    // MGL redirects stdout and stderr to physical console, so let's redirect
     // it to file if WXSTDERR environment variable is set to be able to see
     // wxLogDebug() output
     wxString redirect;