Committing in .
wxMotif changes for OpenVMS Modified Files: wxWindows/src/motif/descrip.mms wxWindows/src/motif/evtloop.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
80e297514d
commit
bf91e65285
@ -46,6 +46,7 @@ OBJECTS = \
|
||||
dcmemory.obj,\
|
||||
dcscreen.obj,\
|
||||
dialog.obj,\
|
||||
evtloop.obj,\
|
||||
filedlg.obj,\
|
||||
font.obj,\
|
||||
frame.obj,\
|
||||
@ -102,6 +103,7 @@ SOURCES = \
|
||||
dcmemory.cpp,\
|
||||
dcscreen.cpp,\
|
||||
dialog.cpp,\
|
||||
evtloop.cpp,\
|
||||
filedlg.cpp,\
|
||||
font.cpp,\
|
||||
frame.cpp,\
|
||||
@ -167,6 +169,7 @@ dcclient.obj : dcclient.cpp
|
||||
dcmemory.obj : dcmemory.cpp
|
||||
dcscreen.obj : dcscreen.cpp
|
||||
dialog.obj : dialog.cpp
|
||||
evtloop.obj : evtloop.cpp
|
||||
filedlg.obj : filedlg.cpp
|
||||
font.obj : font.cpp
|
||||
frame.obj : frame.cpp
|
||||
|
@ -168,8 +168,12 @@ bool wxEventLoop::Dispatch()
|
||||
ProcessXEvent( &event );
|
||||
}
|
||||
else
|
||||
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal );
|
||||
|
||||
#ifdef __VMS
|
||||
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput );
|
||||
#else
|
||||
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal );
|
||||
#endif
|
||||
|
||||
return m_impl ? m_impl->GetKeepGoing() : true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user