]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/evtloopcmn.cpp
don't crash if one of GetAllCommands() parameters is NULL (coverity checker CID 11)
[wxWidgets.git] / src / common / evtloopcmn.cpp
index 71939e27b224d3db6517a209517d1ca8eb4ab43d..36ce381b8da04b368827c60a283df19f424c3817 100644 (file)
@@ -25,6 +25,7 @@
 #endif
 
 #include "wx/evtloop.h"
+#include "wx/app.h"
 
 // ----------------------------------------------------------------------------
 // globals
@@ -32,6 +33,9 @@
 
 wxEventLoop *wxEventLoopBase::ms_activeLoop = NULL;
 
+// wxEventLoopManual is unused in the other ports
+#if defined(__WXMSW__) || defined(__WXMAC__)
+
 // ============================================================================
 // wxEventLoopManual implementation
 // ============================================================================
@@ -145,3 +149,4 @@ void wxEventLoopManual::Exit(int rc)
     WakeUp();
 }
 
+#endif // __WXMSW__ || __WXMAC__