X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f7a50432401c62a3300b0b9faa7e99d7ffe3d4e8..2e53e220c27c900b456222ad4834b17a389a781b:/src/dfb/evtloop.cpp?ds=inline diff --git a/src/dfb/evtloop.cpp b/src/dfb/evtloop.cpp index 3cc18ac290..c4c6c3bdeb 100644 --- a/src/dfb/evtloop.cpp +++ b/src/dfb/evtloop.cpp @@ -27,8 +27,9 @@ #include "wx/thread.h" #include "wx/timer.h" -#include "wx/private/socketevtdispatch.h" +#include "wx/private/selectdispatcher.h" #include "wx/dfb/private.h" +#include "wx/nonownedwnd.h" #define TRACE_EVENTS _T("events") @@ -140,7 +141,7 @@ void wxEventLoop::OnNextIteration() #if wxUSE_SOCKETS // handle any pending socket events: - wxSocketEventDispatcher::Get().RunLoop(); + wxSelectDispatcher::Get().RunLoop(0); #endif } @@ -166,7 +167,7 @@ void wxEventLoop::HandleDFBEvent(const wxDFBEvent& event) case DFEC_WINDOW: { wxDFBWindowEvent winevent(((const DFBEvent&)event).window); - wxTopLevelWindowDFB::HandleDFBWindowEvent(winevent); + wxNonOwnedWindow::HandleDFBWindowEvent(winevent); break; }