]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/evtloop.cpp
applied a patch to ignore the modifiers (things like @euro) in LC_XXX vars
[wxWidgets.git] / src / mgl / evtloop.cpp
index 7f3971cfe50d3f4668720c0a28ed0c7565f0d254..d19bd8639cfb6c8d60a9cc5025188b2e6bcb12b4 100644 (file)
@@ -152,6 +152,10 @@ void wxEventLoop::Exit(int rc)
 
     m_impl->SetExitCode(rc);
     m_impl->SetKeepLooping(FALSE);
+    
+    // Send a dummy event so that the app won't block in EVT_halt if there
+    // are no user-generated events in the queue:
+    EVT_post(0, EVT_USEREVT, 0, 0);
 }
 
 // ----------------------------------------------------------------------------