]> git.saurik.com Git - wxWidgets.git/commitdiff
Dispatch() must dispatch the real events and not only the pending ones accumulated...
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Oct 2008 12:32:39 +0000 (12:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 16 Oct 2008 12:32:39 +0000 (12:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/evtloopunix.cpp

index ec07e2559d5ab3c80caf63a48f962a319d0ea272..76272844d3ea02f1a4c3d720cd591f1c6b5a7665 100644 (file)
@@ -149,6 +149,7 @@ bool wxConsoleEventLoop::Pending() const
 
 bool wxConsoleEventLoop::Dispatch()
 {
+    m_dispatcher->Dispatch();
     wxTheApp->ProcessPendingEvents();
     return true;
 }