]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/dialog_osx.cpp
Don't call base class version unnecessarily in wxLogWindow::DoLogTextAtLevel().
[wxWidgets.git] / src / osx / dialog_osx.cpp
index fabbf006871142fa909891f04e34508cf916b143..c51035b9690bbc4dfc5e87752c75faee18233d12 100644 (file)
@@ -71,7 +71,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);
@@ -138,7 +138,7 @@ int wxDialog::ShowModal()
     return GetReturnCode();
 }
 
-// NB: this function (surprizingly) may be called for both modal and modeless
+// NB: this function (surprisingly) may be called for both modal and modeless
 //     dialogs and should work for both of them
 void wxDialog::EndModal(int retCode)
 {