]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/event.cpp
Added m_callback init.
[wxWidgets.git] / src / common / event.cpp
index 32b436d3a969331365109d4db904d62497cbb766..13a9a70e52161bc12f5a9f8375d1d81c669ff2dd 100644 (file)
@@ -611,11 +611,8 @@ void wxEvtHandler::AddPendingEvent(wxEvent& event)
 
     // TODO: Wake up idle handler for the other platforms.
 #ifdef __WXGTK__
-    extern bool g_isIdle;
-    extern void wxapp_install_idle_handler();
-    if ( g_isIdle )
-        wxapp_install_idle_handler();
-#else // this works for wxMSW, but may be for others too?
+    wxWakeUpIdle();
+#elif wxUSE_GUI // this works for wxMSW, but may be for others too?
     // might also send a dummy message to the top level window, this would
     // probably be cleaner?
     wxIdleEvent eventIdle;