]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/progdlgg.cpp
wxMac completed so far, generic listctrl extension
[wxWidgets.git] / src / generic / progdlgg.cpp
index c6d34316e1a84895cacb7b0a9da8449f8a414f5c..46f42696d98a7d58f1abe2e1641cf3365eef3346 100644 (file)
@@ -227,6 +227,9 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
 
     // Update the display (especially on X, GTK)
     wxYield();
+    #ifdef __WXMAC__
+    MacUpdateImmediately() ;
+    #endif
 }
 
 wxStaticText *wxProgressDialog::CreateLabel(const wxString& text,
@@ -313,6 +316,9 @@ wxProgressDialog::Update(int value, const wxString& newmsg)
        // update the display
        wxYield();
    }
+    #ifdef __WXMAC__
+    MacUpdateImmediately() ;
+    #endif
 
    return m_state != Canceled;
 }