diff --git a/src/unix/baseunix.cpp b/src/unix/baseunix.cpp index b2dacab6dd..f675818f43 100644 --- a/src/unix/baseunix.cpp +++ b/src/unix/baseunix.cpp @@ -95,11 +95,4 @@ wxTimerImpl *wxConsoleAppTraits::CreateTimerImpl(wxTimer *timer) #endif // wxUSE_TIMER -#if wxUSE_CONSOLE_EVENTLOOP - -wxEventLoopBase *wxConsoleAppTraits::CreateEventLoop() -{ - return new wxEventLoop(); -} - -#endif // wxUSE_CONSOLE_EVENTLOOP +// Note: wxConsoleAppTraits::CreateEventLoop() is defined in evtloopunix.cpp! diff --git a/src/unix/evtloopunix.cpp b/src/unix/evtloopunix.cpp index 5bd8b1050f..ec07e2559d 100644 --- a/src/unix/evtloopunix.cpp +++ b/src/unix/evtloopunix.cpp @@ -27,6 +27,7 @@ #endif #include +#include "wx/apptrait.h" #include "wx/evtloop.h" #include "wx/thread.h" #include "wx/module.h" @@ -185,4 +186,10 @@ void wxConsoleEventLoop::OnNextIteration() wxTheApp->CheckSignal(); } + +wxEventLoopBase *wxConsoleAppTraits::CreateEventLoop() +{ + return new wxEventLoop(); +} + #endif // wxUSE_CONSOLE_EVENTLOOP