+bool wxAppBase::IsEventAllowedInsideYield(wxEventCategory cat) const
+{
+ return (m_eventsToProcessInsideYield & cat) != 0;
+}
+
+bool wxAppBase::SafeYield(wxWindow *win, bool onlyIfNeeded)
+{
+ wxWindowDisabler wd(win);
+
+ return Yield(onlyIfNeeded);
+}
+
+bool wxAppBase::SafeYieldFor(wxWindow *win, long eventsToProcess)
+{
+ wxWindowDisabler wd(win);
+
+ return YieldFor(eventsToProcess);
+}
+
+