From: Vadim Zeitlin Date: Thu, 17 Mar 2005 22:39:27 +0000 (+0000) Subject: removed #ifdef __WXMAC__ as the code is now the same in both branches anyhow X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b618daa3507aef88259e83eb8796e5a1af8f4a36 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 --- diff --git a/src/generic/busyinfo.cpp b/src/generic/busyinfo.cpp index 63088b3c3d..f3f737f4b8 100644 --- a/src/generic/busyinfo.cpp +++ b/src/generic/busyinfo.cpp @@ -105,12 +105,8 @@ wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent) { m_InfoFrame = new wxInfoFrame( parent, message); m_InfoFrame->Show(true); -#ifdef __WXMAC__ - m_InfoFrame->Update() ; -#else m_InfoFrame->Refresh(); m_InfoFrame->Update(); -#endif } wxBusyInfo::~wxBusyInfo()