]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/app.cpp
added wxArtProvider
[wxWidgets.git] / src / x11 / app.cpp
index 8176837135dd6888b9e4ba2e9356e606d55e16f5..165942382a5b571b75974d16365222476484e550 100644 (file)
@@ -25,6 +25,7 @@
 #include "wx/log.h"
 #include "wx/intl.h"
 #include "wx/evtloop.h"
+#include "wx/timer.h"
 
 #include "wx/univ/theme.h"
 #include "wx/univ/renderer.h"
@@ -993,6 +994,11 @@ bool wxApp::Yield(bool onlyIfNeeded)
     while (wxTheApp && wxTheApp->Pending())
         wxTheApp->Dispatch();
 
+#if wxUSE_TIMER
+    wxTimer::NotifyTimers();
+#endif
+    ProcessIdle();
+
     s_inYield = FALSE;
 
     return TRUE;