From: Robin Dunn Date: Thu, 17 Mar 2005 22:35:53 +0000 (+0000) Subject: Use Update() instead of yielding and waiting for the update to happen there. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0b634ddd0801fcb01b3a951c22449e5dfee9c29e Use Update() instead of yielding and waiting for the update to happen there. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32872 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/busyinfo.cpp b/src/generic/busyinfo.cpp index 9def84ca34..63088b3c3d 100644 --- a/src/generic/busyinfo.cpp +++ b/src/generic/busyinfo.cpp @@ -108,9 +108,8 @@ wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent) #ifdef __WXMAC__ m_InfoFrame->Update() ; #else - wxYield(); m_InfoFrame->Refresh(); - wxYield(); + m_InfoFrame->Update(); #endif } @@ -118,7 +117,6 @@ wxBusyInfo::~wxBusyInfo() { m_InfoFrame->Show(false); m_InfoFrame->Close(); - wxYield(); } #endif