compilation fix for systems with XtIMSignal

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-08-24 17:36:00 +00:00
parent 4c620d1900
commit 5e23e2d59a

View File

@ -162,11 +162,13 @@ bool wxEventLoop::Dispatch()
ProcessXEvent( &event ); ProcessXEvent( &event );
} }
else else
#ifdef __VMS {
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput ); XtAppProcessEvent( context, XtIMTimer | XtIMAlternateInput
#else #ifdef XtIMSignal
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal ); | XtIMSignal
#endif #endif
);
}
return m_impl ? m_impl->GetKeepGoing() : true; return m_impl ? m_impl->GetKeepGoing() : true;
} }