From: Vadim Zeitlin Date: Sat, 14 Jul 2007 20:27:30 +0000 (+0000) Subject: replace RunLoop() call with Dispatch() after wxFDIODispatcher changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2d1593cd4b21dda37236dee8c5057343e41656cd replace RunLoop() call with Dispatch() after wxFDIODispatcher changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47476 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/evtloopunix.cpp b/src/unix/evtloopunix.cpp index c147a7651d..5bd8b1050f 100644 --- a/src/unix/evtloopunix.cpp +++ b/src/unix/evtloopunix.cpp @@ -175,7 +175,7 @@ void wxConsoleEventLoop::OnNextIteration() timeout = wxFDIODispatcher::TIMEOUT_INFINITE; } - m_dispatcher->RunLoop(timeout); + m_dispatcher->Dispatch(timeout); #if wxUSE_TIMER wxTimerScheduler::Get().NotifyExpired();