]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/progdlgg.cpp
DJGPP compilation
[wxWidgets.git] / src / generic / progdlgg.cpp
index 94109c5660157d515ff71887c3ae7a598f314cf9..33a8d648fcdda97cd56edf3e4f28a895a1b7ad13 100644 (file)
@@ -89,6 +89,9 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
                                    int style)
                 : wxDialog(parent, -1, title)
 {
+    // we may disappear at any moment, let the others know about it
+    SetExtraStyle(GetExtraStyle() | wxWS_EX_TRANSIENT);
+
     m_windowStyle |= style;
 
     bool hasAbortButton = (style & wxPD_CAN_ABORT) != 0;