correct closing comments in #endifs (patch 1756990)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-07-21 23:54:55 +00:00
parent 9222c61388
commit b0f76951bc
10 changed files with 12 additions and 12 deletions

View File

@@ -183,14 +183,14 @@ void wxApp::WakeUpIdle()
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiEnter();
#endif // wxUSE_THREADS_
#endif // wxUSE_THREADS
wxapp_install_idle_handler();
#if wxUSE_THREADS
if (!wxThread::IsMain())
wxMutexGuiLeave();
#endif // wxUSE_THREADS_
#endif // wxUSE_THREADS
}
//-----------------------------------------------------------------------------