From: Vadim Zeitlin Date: Wed, 24 Aug 2005 17:36:00 +0000 (+0000) Subject: compilation fix for systems with XtIMSignal X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5e23e2d59a25a7eae5ca16958877be59f7eeb33b compilation fix for systems with XtIMSignal git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/motif/evtloop.cpp b/src/motif/evtloop.cpp index bcb13876da..d92da8a1eb 100644 --- a/src/motif/evtloop.cpp +++ b/src/motif/evtloop.cpp @@ -162,11 +162,13 @@ bool wxEventLoop::Dispatch() ProcessXEvent( &event ); } else -#ifdef __VMS - XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput ); -#else - XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal ); + { + XtAppProcessEvent( context, XtIMTimer | XtIMAlternateInput +#ifdef XtIMSignal + | XtIMSignal #endif + ); + } return m_impl ? m_impl->GetKeepGoing() : true; }