X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ddff00c923d454f651aba32c8fe3654fd303e43..5273b98ebe9320c75095adad4edb63ee0557425d:/src/dfb/app.cpp diff --git a/src/dfb/app.cpp b/src/dfb/app.cpp index bfde03508e..9fac9fec86 100644 --- a/src/dfb/app.cpp +++ b/src/dfb/app.cpp @@ -28,10 +28,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) -BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) - EVT_IDLE(wxAppBase::OnIdle) -END_EVENT_TABLE() - wxApp::wxApp() { } @@ -188,7 +184,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()); @@ -200,7 +198,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;