]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/app.cpp
using new API instead of 2.8 compat, fixes #9990
[wxWidgets.git] / src / dfb / app.cpp
index 8ae8339fe50f4a5ddb0f5763a7e1a26011bc20c2..093bd63642d78c2b9eee67f8a7abcbfa863e3d6f 100644 (file)
@@ -19,6 +19,7 @@
 #include "wx/app.h"
 
 #include "wx/evtloop.h"
+#include "wx/thread.h"
 #include "wx/dfb/private.h"
 #include "wx/private/fontmgr.h"
 
@@ -184,7 +185,9 @@ bool wxApp::Yield(bool onlyIfNeeded)
 
     s_inYield = true;
 
+#if wxUSE_LOG
     wxLog::Suspend();
+#endif // wxUSE_LOG
 
     wxEventLoop * const
         loop = wx_static_cast(wxEventLoop *, wxEventLoop::GetActive());
@@ -196,7 +199,9 @@ bool wxApp::Yield(bool onlyIfNeeded)
     // OnUpdateUI() which is a nice (and desired) side effect)
     while ( ProcessIdle() ) {}
 
+#if wxUSE_LOG
     wxLog::Resume();
+#endif // wxUSE_LOG
 
     s_inYield = false;