]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/evtloop.cpp
Don't specialize std::numeric_limits<> for wxLongLong when using VC6.
[wxWidgets.git] / src / mgl / evtloop.cpp
index 861fc560149324fda9f0f2fccfd8809769af5af1..5e89f6b8b89aa0da588e887c5bdfd4da328db314 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Vaclav Slavik
 // RCS-ID:      $Id$
 // Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
-// License:     wxWindows licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ----------------------------------------------------------------------------
@@ -73,9 +73,9 @@ void wxEventLoopImpl::Dispatch()
 {
     event_t evt;
 
-    // VS: The code bellow is equal to MGL's EVT_halt implementation, with
-    //     two things added: sleeping (busy waiting is stupid, lets make CPU's
-    //     life a bit easier) and timers updating
+    // VS: The code below is equal to MGL's EVT_halt implementation, with
+    //     two things added: sleeping (busy waiting is stupid, let's make CPU's
+    //     life a bit easier) and timers updating.
 
     // EVT_halt(&evt, EVT_EVERYEVT);
     for (;;)
@@ -143,8 +143,7 @@ int wxGUIEventLoop::Run()
     OnExit();
 
     int exitcode = m_impl->GetExitCode();
-    delete m_impl;
-    m_impl = NULL;
+    wxDELETE(m_impl);
 
     return exitcode;
 }