From: Mattia Barbon <mbarbon@cpan.org>
Date: Mon, 14 Jul 2003 14:18:03 +0000 (+0000)
Subject:   Use wxApp::ProcessIdle() instead of wxApp::SendIdleEvents().
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d794dcb6d9ad060f9e541b4919750e2febadebfd

  Use wxApp::ProcessIdle() instead of wxApp::SendIdleEvents().


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21957 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/src/x11/cursor.cpp b/src/x11/cursor.cpp
index 75b19b491d..2a481abee6 100644
--- a/src/x11/cursor.cpp
+++ b/src/x11/cursor.cpp
@@ -203,7 +203,7 @@ void wxEndBusyCursor()
     gs_savedCursor = wxNullCursor;
 
     if (wxTheApp)
-        wxTheApp->SendIdleEvents();
+        wxTheApp->ProcessIdle();
 }
 
 void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )