From 4eba3923cc427b9e72d71dd33f2b3f7ae203b349 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 18 Dec 2007 16:10:13 +0000 Subject: [PATCH] fixes for the case when only epoll() based wxFDIODispatcher is available git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50810 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/dfb/evtloop.cpp | 4 ++-- src/x11/evtloop.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dfb/evtloop.cpp b/src/dfb/evtloop.cpp index 9581c32..6c6bef4 100644 --- a/src/dfb/evtloop.cpp +++ b/src/dfb/evtloop.cpp @@ -27,7 +27,7 @@ #include "wx/thread.h" #include "wx/generic/private/timer.h" -#include "wx/private/selectdispatcher.h" +#include "wx/private/fdiodispatcher.h" #include "wx/dfb/private.h" #include "wx/nonownedwnd.h" @@ -141,7 +141,7 @@ void wxGUIEventLoop::OnNextIteration() #if wxUSE_SOCKETS // handle any pending socket events: - wxSelectDispatcher::DispatchPending(); + wxFDIODispatcher::DispatchPending(); #endif } diff --git a/src/x11/evtloop.cpp b/src/x11/evtloop.cpp index 4540e88..ff45dd3 100644 --- a/src/x11/evtloop.cpp +++ b/src/x11/evtloop.cpp @@ -29,7 +29,7 @@ #include "wx/module.h" #endif -#include "wx/private/selectdispatcher.h" +#include "wx/private/fdiodispatcher.h" #include "wx/unix/private.h" #include "wx/x11/private.h" #include "X11/Xlib.h" @@ -240,7 +240,7 @@ bool wxGUIEventLoop::Dispatch() #if wxUSE_SOCKETS // handle any pending socket events: - wxSelectDispatcher::DispatchPending(); + wxFDIODispatcher::DispatchPending(); #endif (void) m_impl->ProcessEvent( &event ); -- 2.7.4