]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dialog.cpp
applying patch, fixes #10523
[wxWidgets.git] / src / msw / dialog.cpp
index 6dc0d62e047c6bd24beb417b6641629c89648b9e..1f9459d57d3d024d33ae6e14721f142bf6bdcb06 100644 (file)
@@ -40,7 +40,7 @@
 
 #include "wx/msw/private.h"
 #include "wx/evtloop.h"
-#include "wx/ptr_scpd.h"
+#include "wx/scopedptr.h"
 
 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
     #include "wx/msw/wince/resources.h"
@@ -192,8 +192,6 @@ bool wxDialog::Create(wxWindow *parent,
 
 wxDialog::~wxDialog()
 {
-    m_isBeingDeleted = true;
-
     // this will also reenable all the other windows for a modal dialog
     Show(false);
 
@@ -284,7 +282,7 @@ int wxDialog::ShowModal()
 
     // EndModal may have been called from InitDialog handler (called from
     // inside Show()) and hidden the dialog back again
-    if ( !IsShown() )
+    if ( IsShown() )
     {
         // enter and run the modal loop
         wxDialogModalDataTiedPtr modalData(&m_modalData,