wxMac just using Update()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19402 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2003-03-01 17:13:57 +00:00
parent 913ff1a703
commit 3211bccf7c

View File

@@ -105,9 +105,13 @@ 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
}
wxBusyInfo::~wxBusyInfo()