removed #ifdef __WXMAC__ as the code is now the same in both branches anyhow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-17 22:39:27 +00:00
parent 0b634ddd08
commit b618daa350

View File

@@ -105,12 +105,8 @@ wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent)
{ {
m_InfoFrame = new wxInfoFrame( parent, message); m_InfoFrame = new wxInfoFrame( parent, message);
m_InfoFrame->Show(true); m_InfoFrame->Show(true);
#ifdef __WXMAC__
m_InfoFrame->Update() ;
#else
m_InfoFrame->Refresh(); m_InfoFrame->Refresh();
m_InfoFrame->Update(); m_InfoFrame->Update();
#endif
} }
wxBusyInfo::~wxBusyInfo() wxBusyInfo::~wxBusyInfo()