IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
-BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
- EVT_IDLE(wxAppBase::OnIdle)
-END_EVENT_TABLE()
-
wxApp::wxApp()
{
}
s_inYield = true;
+#if wxUSE_LOG
wxLog::Suspend();
+#endif // wxUSE_LOG
wxEventLoop * const
loop = wx_static_cast(wxEventLoop *, wxEventLoop::GetActive());
// OnUpdateUI() which is a nice (and desired) side effect)
while ( ProcessIdle() ) {}
+#if wxUSE_LOG
wxLog::Resume();
+#endif // wxUSE_LOG
s_inYield = false;