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:
@@ -46,6 +46,7 @@ OBJECTS = \
|
|||||||
dcmemory.obj,\
|
dcmemory.obj,\
|
||||||
dcscreen.obj,\
|
dcscreen.obj,\
|
||||||
dialog.obj,\
|
dialog.obj,\
|
||||||
|
evtloop.obj,\
|
||||||
filedlg.obj,\
|
filedlg.obj,\
|
||||||
font.obj,\
|
font.obj,\
|
||||||
frame.obj,\
|
frame.obj,\
|
||||||
@@ -102,6 +103,7 @@ SOURCES = \
|
|||||||
dcmemory.cpp,\
|
dcmemory.cpp,\
|
||||||
dcscreen.cpp,\
|
dcscreen.cpp,\
|
||||||
dialog.cpp,\
|
dialog.cpp,\
|
||||||
|
evtloop.cpp,\
|
||||||
filedlg.cpp,\
|
filedlg.cpp,\
|
||||||
font.cpp,\
|
font.cpp,\
|
||||||
frame.cpp,\
|
frame.cpp,\
|
||||||
@@ -167,6 +169,7 @@ dcclient.obj : dcclient.cpp
|
|||||||
dcmemory.obj : dcmemory.cpp
|
dcmemory.obj : dcmemory.cpp
|
||||||
dcscreen.obj : dcscreen.cpp
|
dcscreen.obj : dcscreen.cpp
|
||||||
dialog.obj : dialog.cpp
|
dialog.obj : dialog.cpp
|
||||||
|
evtloop.obj : evtloop.cpp
|
||||||
filedlg.obj : filedlg.cpp
|
filedlg.obj : filedlg.cpp
|
||||||
font.obj : font.cpp
|
font.obj : font.cpp
|
||||||
frame.obj : frame.cpp
|
frame.obj : frame.cpp
|
||||||
|
@@ -168,7 +168,11 @@ bool wxEventLoop::Dispatch()
|
|||||||
ProcessXEvent( &event );
|
ProcessXEvent( &event );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#ifdef __VMS
|
||||||
|
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput );
|
||||||
|
#else
|
||||||
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal );
|
XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal );
|
||||||
|
#endif
|
||||||
|
|
||||||
return m_impl ? m_impl->GetKeepGoing() : true;
|
return m_impl ? m_impl->GetKeepGoing() : true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user