]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/busyinfo.cpp
don't define functions unused under CE when compiling for it (avoids warnings)
[wxWidgets.git] / src / generic / busyinfo.cpp
index 5acc107333979c655393a1854e7366b7551aa4bb..69ebc54eaddec746bb504515481a7b8d7bc84eb9 100644 (file)
@@ -6,13 +6,13 @@
 // Licence:     wxWindows Licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "busyinfo.h"
 #endif
 
 #include "wx/wxprec.h"
 
-#ifdef __BORDLANDC__
+#ifdef __BORLANDC__
 #pragma hdrstop
 #endif
 
@@ -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()