projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
12d0b79
)
compilation fix for wxUSE_LOG==0
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Mon, 16 Jul 2007 21:15:21 +0000
(21:15 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Mon, 16 Jul 2007 21:15:21 +0000
(21:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47511
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/dfb/app.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/dfb/app.cpp
b/src/dfb/app.cpp
index 8ae8339fe50f4a5ddb0f5763a7e1a26011bc20c2..9fac9fec8673f619727125dd11b80884264b1aa6 100644
(file)
--- a/
src/dfb/app.cpp
+++ b/
src/dfb/app.cpp
@@
-184,7
+184,9
@@
bool wxApp::Yield(bool onlyIfNeeded)
s_inYield = true;
s_inYield = true;
+#if wxUSE_LOG
wxLog::Suspend();
wxLog::Suspend();
+#endif // wxUSE_LOG
wxEventLoop * const
loop = wx_static_cast(wxEventLoop *, wxEventLoop::GetActive());
wxEventLoop * const
loop = wx_static_cast(wxEventLoop *, wxEventLoop::GetActive());
@@
-196,7
+198,9
@@
bool wxApp::Yield(bool onlyIfNeeded)
// OnUpdateUI() which is a nice (and desired) side effect)
while ( ProcessIdle() ) {}
// OnUpdateUI() which is a nice (and desired) side effect)
while ( ProcessIdle() ) {}
+#if wxUSE_LOG
wxLog::Resume();
wxLog::Resume();
+#endif // wxUSE_LOG
s_inYield = false;
s_inYield = false;