X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ca65c0440a7163e4e37e48b1c4329709d722db47..088ddc4e370d808a2f7e923b671856c303dfa45c:/src/generic/busyinfo.cpp diff --git a/src/generic/busyinfo.cpp b/src/generic/busyinfo.cpp index 9def84ca34..f3f737f4b8 100644 --- a/src/generic/busyinfo.cpp +++ b/src/generic/busyinfo.cpp @@ -105,20 +105,14 @@ wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent) { m_InfoFrame = new wxInfoFrame( parent, message); m_InfoFrame->Show(true); -#ifdef __WXMAC__ - m_InfoFrame->Update() ; -#else - wxYield(); m_InfoFrame->Refresh(); - wxYield(); -#endif + m_InfoFrame->Update(); } wxBusyInfo::~wxBusyInfo() { m_InfoFrame->Show(false); m_InfoFrame->Close(); - wxYield(); } #endif