]> git.saurik.com Git - wxWidgets.git/commitdiff
fixes for the case when only epoll() based wxFDIODispatcher is available
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 18 Dec 2007 16:10:13 +0000 (16:10 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 18 Dec 2007 16:10:13 +0000 (16:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50810 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/dfb/evtloop.cpp
src/x11/evtloop.cpp

index 9581c327f1d5aaa4c650f89551136ce5210a8edc..6c6bef402dda24966606669626cb08e6b594eae1 100644 (file)
@@ -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
 }
 
index 4540e888da12d753ac7dba47e8b9cbaaf9dbac5b..ff45dd3a710a0ea117095027b4ac184df21a1995 100644 (file)
@@ -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 );