From: Stefan Csomor Date: Fri, 9 May 2003 07:12:02 +0000 (+0000) Subject: reintroduced m_isBeingDeleted X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/140f2012cdfdadb7e622e3b52339e521fa4a67a6 reintroduced m_isBeingDeleted git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/frame.cpp b/src/mac/carbon/frame.cpp index e3824f30bb..0cda00cb61 100644 --- a/src/mac/carbon/frame.cpp +++ b/src/mac/carbon/frame.cpp @@ -107,10 +107,10 @@ bool wxFrame::Create(wxWindow *parent, return FALSE; MacCreateRealWindow( title, pos , size , MacRemoveBordersFromStyle(style) , name ) ; - + m_macWindowBackgroundTheme = kThemeBrushDocumentWindowBackground ; SetThemeWindowBackground( (WindowRef) m_macWindow , m_macWindowBackgroundTheme , false ) ; - + wxModelessWindows.Append(this); return TRUE; @@ -119,7 +119,6 @@ bool wxFrame::Create(wxWindow *parent, wxFrame::~wxFrame() { m_isBeingDeleted = TRUE; - DeleteAllBars(); } diff --git a/src/mac/carbon/radiobox.cpp b/src/mac/carbon/radiobox.cpp index fbf840fc8d..f7874dd099 100644 --- a/src/mac/carbon/radiobox.cpp +++ b/src/mac/carbon/radiobox.cpp @@ -77,6 +77,8 @@ wxRadioBox::wxRadioBox() wxRadioBox::~wxRadioBox() { + m_isBeingDeleted = TRUE; + wxRadioButton *next,*current; current=m_radioButtonCycle->NextInCycle(); diff --git a/src/mac/carbon/window.cpp b/src/mac/carbon/window.cpp index 2d30db0296..d68b00c5bd 100644 --- a/src/mac/carbon/window.cpp +++ b/src/mac/carbon/window.cpp @@ -104,6 +104,7 @@ void wxWindowMac::Init() // generic InitBase(); + m_isBeingDeleted = FALSE; m_backgroundTransparent = FALSE; // as all windows are created with WS_VISIBLE style... @@ -139,6 +140,8 @@ wxWindowMac::~wxWindowMac() } } + m_isBeingDeleted = TRUE; + #ifndef __WXUNIVERSAL__ // VS: make sure there's no wxFrame with last focus set to us: for ( wxWindow *win = GetParent(); win; win = win->GetParent() ) diff --git a/src/mac/frame.cpp b/src/mac/frame.cpp index e3824f30bb..0cda00cb61 100644 --- a/src/mac/frame.cpp +++ b/src/mac/frame.cpp @@ -107,10 +107,10 @@ bool wxFrame::Create(wxWindow *parent, return FALSE; MacCreateRealWindow( title, pos , size , MacRemoveBordersFromStyle(style) , name ) ; - + m_macWindowBackgroundTheme = kThemeBrushDocumentWindowBackground ; SetThemeWindowBackground( (WindowRef) m_macWindow , m_macWindowBackgroundTheme , false ) ; - + wxModelessWindows.Append(this); return TRUE; @@ -119,7 +119,6 @@ bool wxFrame::Create(wxWindow *parent, wxFrame::~wxFrame() { m_isBeingDeleted = TRUE; - DeleteAllBars(); } diff --git a/src/mac/radiobox.cpp b/src/mac/radiobox.cpp index fbf840fc8d..f7874dd099 100644 --- a/src/mac/radiobox.cpp +++ b/src/mac/radiobox.cpp @@ -77,6 +77,8 @@ wxRadioBox::wxRadioBox() wxRadioBox::~wxRadioBox() { + m_isBeingDeleted = TRUE; + wxRadioButton *next,*current; current=m_radioButtonCycle->NextInCycle(); diff --git a/src/mac/window.cpp b/src/mac/window.cpp index 2d30db0296..d68b00c5bd 100644 --- a/src/mac/window.cpp +++ b/src/mac/window.cpp @@ -104,6 +104,7 @@ void wxWindowMac::Init() // generic InitBase(); + m_isBeingDeleted = FALSE; m_backgroundTransparent = FALSE; // as all windows are created with WS_VISIBLE style... @@ -139,6 +140,8 @@ wxWindowMac::~wxWindowMac() } } + m_isBeingDeleted = TRUE; + #ifndef __WXUNIVERSAL__ // VS: make sure there's no wxFrame with last focus set to us: for ( wxWindow *win = GetParent(); win; win = win->GetParent() )