]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/evtloop.mm
fixing warnings
[wxWidgets.git] / src / cocoa / evtloop.mm
index abffb75f8885ef669e96469b64723b9aaf57e025..de848b00e3954cf57f2cb38ca6c6f1fa38130256 100644 (file)
 
 #include "wx/wxprec.h"
 
+#include "wx/evtloop.h"
+
 #ifndef WX_PRECOMP
     #include "wx/log.h"
     #include "wx/app.h"
 #endif //WX_PRECOMP
 
-#include "wx/evtloop.h"
-
 #import <AppKit/NSApplication.h>
 #import <AppKit/NSEvent.h>
 #import <Foundation/NSRunLoop.h>
@@ -163,7 +163,8 @@ bool wxGUIEventLoop::YieldFor(long eventsToProcess)
         the main thread waits and then notify the main thread by posting
         an event.
      */
-    ProcessPendingEvents();
+    if (wxTheApp)
+        wxTheApp->ProcessPendingEvents();
 
 #if wxUSE_LOG
     // let the logs be flashed again