]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dialog.cpp
call Show(false) from ~wxDialog to call EndModal if the dialog is still modal consist...
[wxWidgets.git] / src / gtk / dialog.cpp
index bb0f74e2efcee2dc2bc8e7c500681757380915d7..8a087ecae6e04c4b8c60db40f664b778e9afa794 100644 (file)
@@ -71,11 +71,20 @@ bool wxDialog::Show( bool show )
 
     bool ret = wxWindow::Show( show );
 
-    if (show) InitDialog();
+    if (show)
+        InitDialog();
 
     return ret;
 }
 
+wxDialog::~wxDialog()
+{
+    m_isBeingDeleted = true;
+
+    // if the dialog is modal, this will end its event loop
+    Show(false);
+}
+
 bool wxDialog::IsModal() const
 {
     return m_modalShowing;