From 5e23e2d59a25a7eae5ca16958877be59f7eeb33b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 24 Aug 2005 17:36:00 +0000 Subject: [PATCH] compilation fix for systems with XtIMSignal git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/motif/evtloop.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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; } -- 2.45.2