]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/evtloop.cpp
When inserting a new menu don't try to find th eposition of the current one
[wxWidgets.git] / src / mgl / evtloop.cpp
index fe0b328eaebb28f8a898c57778e58718322e65b9..d9fd9295661323fb7a21704876a1753e36cda149 100644 (file)
@@ -11,7 +11,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "evtloop.h"
 #endif
 
@@ -97,9 +97,7 @@ void wxEventLoopImpl::Dispatch()
 
 bool wxEventLoopImpl::SendIdleEvent()
 {
-    wxIdleEvent event;
-
-    return wxTheApp->ProcessEvent(event) && event.MoreRequested();
+    return wxTheApp->ProcessIdle();
 }
 
 // ============================================================================