]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/evtloopcmn.cpp
Fix [ 1574240 ] wx.RadioButton doesn't navigate correctly
[wxWidgets.git] / src / common / evtloopcmn.cpp
index 71939e27b224d3db6517a209517d1ca8eb4ab43d..711ada6006e6a85bd01a915140d665171db357a5 100644 (file)
 
 #include "wx/evtloop.h"
 
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+#endif //WX_PRECOMP
+
 // ----------------------------------------------------------------------------
 // globals
 // ----------------------------------------------------------------------------
 
 wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL;
 
+// wxEventLoopManual is unused in the other ports
+#if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXDFB__)
+
 // ============================================================================
 // wxEventLoopManual implementation
 // ============================================================================
@@ -145,3 +152,4 @@ void wxEventLoopManual::Exit(int rc)
     WakeUp();
 }
 
+#endif // __WXMSW__ || __WXMAC__ || __WXDFB__