]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dialog.cpp
add wxLanguageInfo::GetLocaleName(), this simplifies the current code and will be...
[wxWidgets.git] / src / gtk / dialog.cpp
index 8a087ecae6e04c4b8c60db40f664b778e9afa794..ebc45066651b51c4f00cb2c2ede4df8b9201b4e2 100644 (file)
@@ -82,7 +82,8 @@ wxDialog::~wxDialog()
     m_isBeingDeleted = true;
 
     // if the dialog is modal, this will end its event loop
-    Show(false);
+    if ( IsModal() )
+        EndModal(wxID_CANCEL);
 }
 
 bool wxDialog::IsModal() const