]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/evtloop.cpp
test for __MINGW64__ in the huge files support section
[wxWidgets.git] / src / msw / evtloop.cpp
index 42e403787c9309ee19ed34d00c7c3f135486dd25..601b8b870b2405eecc7e22b5281a84b17577ca33 100644 (file)
 #endif //WX_PRECOMP
 
 #include "wx/evtloop.h"
-
-
+#include "wx/thread.h"
 #include "wx/except.h"
 #include "wx/ptr_scpd.h"
-
 #include "wx/msw/private.h"
 
 #if wxUSE_GUI
     #include "wx/tooltip.h"
     #if wxUSE_THREADS
-        #include "wx/thread.h"
-
         // define the list of MSG strutures
         WX_DECLARE_LIST(MSG, wxMsgList);
 
@@ -307,6 +303,8 @@ void wxGUIEventLoop::WakeUp()
 
 #else // !wxUSE_GUI
 
+#if wxUSE_CONSOLE_EVENTLOOP
+
 void wxConsoleEventLoop::OnNextIteration()
 {
     if ( wxTheApp )
@@ -334,10 +332,12 @@ bool wxConsoleEventLoop::Dispatch()
     }
     else
     {
-        wxLogDebug(_T("Ignoring unexpected message %d"), msg.message);
+        ::DispatchMessage(&msg);
     }
 
     return !m_shouldExit;
 }
 
+#endif // wxUSE_CONSOLE_EVENTLOOP
+
 #endif //wxUSE_GUI