From 88ec1a0722202d75512eef914d8b05be954b9378 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 21 Jul 2008 17:14:32 +0000 Subject: [PATCH] fix wxDFB compilation without wxUSE_LOG (#9752) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@54754 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/dfb/app.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dfb/app.cpp b/src/dfb/app.cpp index eadd69a205..dfb896d7f0 100644 --- a/src/dfb/app.cpp +++ b/src/dfb/app.cpp @@ -135,7 +135,9 @@ bool wxApp::Yield(bool onlyIfNeeded) s_inYield = true; +#if wxUSE_LOG wxLog::Suspend(); +#endif // wxUSE_LOG // A guarentee that there will be an active event loop: wxEventLoopGuarantor dummyLoopIfNeeded; @@ -146,7 +148,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;