X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8ecf7346462b78a53defa2684aaac83dbfa29521..25f701e6324fe5b1cf4c9b87621183ed4b863f64:/src/motif/app.cpp diff --git a/src/motif/app.cpp b/src/motif/app.cpp index c987ef6334..0a073548e7 100644 --- a/src/motif/app.cpp +++ b/src/motif/app.cpp @@ -12,11 +12,6 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#ifdef __VMS -#define XtParent XTPARENT -#define XtDisplay XTDISPLAY -#endif - #include "wx/app.h" #ifndef WX_PRECOMP @@ -473,31 +468,6 @@ void wxApp::SetTopLevelRealizedWidget(WXDisplay* display, WXWidget widget) .m_topLevelRealizedWidget = (Widget)widget; } -// Yield to other processes - -bool wxApp::Yield(bool onlyIfNeeded) -{ - static bool s_inYield = false; - - if ( s_inYield ) - { - if ( !onlyIfNeeded ) - { - wxFAIL_MSG( wxT("wxYield called recursively" ) ); - } - - return false; - } - - s_inYield = true; - - while (wxTheApp && wxTheApp->Pending()) - wxTheApp->Dispatch(); - - s_inYield = false; - - return true; -} // ---------------------------------------------------------------------------- // accessors for C modules