]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dialog.cpp
Swap client data pointers in wxRearrangeList too.
[wxWidgets.git] / src / motif / dialog.cpp
index 3955a68d4536e6385f011764ffde4e670c3f7e42..618c22de04929b8134d8d406abf8d6738ea5cddb 100644 (file)
@@ -181,7 +181,7 @@ void wxDialog::SetModal(bool flag)
 
 wxDialog::~wxDialog()
 {
-    m_isBeingDeleted = true;
+    SendDestroyEvent();
 
     // if the dialog is modal, this will end its event loop
     Show(false);
@@ -307,8 +307,7 @@ int wxDialog::ShowModal()
     // Now process all events in case they get sent to a destroyed dialog
     wxFlushEvents( display );
 
-    delete m_eventLoop;
-    m_eventLoop = NULL;
+    wxDELETE(m_eventLoop);
 
     // TODO: is it safe to call this, if the dialog may have been deleted
     // by now? Probably only if we're using delayed deletion of dialogs.