]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dialog.cpp
put frame extents XGetWindowProperty code in one place
[wxWidgets.git] / src / motif / dialog.cpp
index ceb4ca922e20df771fd869b6ed7faee5a0cb6854..3955a68d4536e6385f011764ffde4e670c3f7e42 100644 (file)
@@ -183,6 +183,9 @@ wxDialog::~wxDialog()
 {
     m_isBeingDeleted = true;
 
+    // if the dialog is modal, this will end its event loop
+    Show(false);
+
     delete m_eventLoop;
 
     if (m_mainWidget)
@@ -241,6 +244,9 @@ bool wxDialog::Show( bool show )
     if( !wxWindowBase::Show( show ) )
         return false;
 
+    if ( !show && IsModal() )
+        EndModal(wxID_CANCEL);
+
     m_isShown = show;
 
     if (show)