]> git.saurik.com Git - wxWidgets.git/commitdiff
removed #ifdef __WXMAC__ as the code is now the same in both branches anyhow
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 17 Mar 2005 22:39:27 +0000 (22:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 17 Mar 2005 22:39:27 +0000 (22:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/busyinfo.cpp

index 63088b3c3d45f19e2532794bfb2560a98b6a8910..f3f737f4b8212e6b9716b33f69e1bda1c2ab826c 100644 (file)
@@ -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()