From: Vadim Zeitlin Date: Tue, 16 Sep 2003 21:29:32 +0000 (+0000) Subject: don't hang forever in Dispatch() if there is no event loop X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d1fc6f065885a749930c86fdb0200f3220ad86b5 don't hang forever in Dispatch() if there is no event loop git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23627 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/appcmn.cpp b/src/common/appcmn.cpp index c081dc4ed8..a76039c80f 100644 --- a/src/common/appcmn.cpp +++ b/src/common/appcmn.cpp @@ -313,7 +313,7 @@ bool wxAppBase::Dispatch() // see comment in Pending() wxEventLoop * const loop = wxEventLoop::GetActive(); - return loop ? loop->Dispatch() : true; + return loop && loop->Dispatch(); #else // wxUSE_EVTLOOP_IN_APP return true; #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP