diff --git a/src/dfb/evtloop.cpp b/src/dfb/evtloop.cpp index 9581c327f1..6c6bef402d 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 4540e888da..ff45dd3a71 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 );