git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23596
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxAutoNSAutoreleasePool pool;
DestroyChildren();
wxAutoNSAutoreleasePool pool;
DestroyChildren();
- if(m_parent)
- m_parent->RemoveChild(this);
-
CocoaRemoveFromParent();
delete m_cocoaHider;
delete m_cocoaScroller;
CocoaRemoveFromParent();
delete m_cocoaHider;
delete m_cocoaScroller;
wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
+ // reset the dangling pointer our parent window may keep to us
+ if ( m_parent )
+ {
+ if ( m_parent->GetDefaultItem() == this )
+ {
+ m_parent->SetDefaultItem(NULL);
+ }
+
+ m_parent->RemoveChild(this);
+ }
+
#if wxUSE_CARET
delete m_caret;
#endif // wxUSE_CARET
#if wxUSE_CARET
delete m_caret;
#endif // wxUSE_CARET
#if wxUSE_ACCESSIBILITY
delete m_accessible;
#endif
#if wxUSE_ACCESSIBILITY
delete m_accessible;
#endif
-
- // reset the dangling pointer our parent window may keep to us
- if ( m_parent && m_parent->GetDefaultItem() == this )
- {
- m_parent->SetDefaultItem(NULL);
- }
}
bool wxWindowBase::Destroy()
}
bool wxWindowBase::Destroy()
wxWindow *child = node->GetData();
wxWindow *child = node->GetData();
- wxASSERT_MSG( child, wxT("children list contains empty nodes") );
-
- child->Show(FALSE);
-
child->Destroy();
wxASSERT_MSG( !GetChildren().Find(child),
child->Destroy();
wxASSERT_MSG( !GetChildren().Find(child),
- if (m_parent)
- m_parent->RemoveChild( this );
-
#ifdef HAVE_XIM
if (m_ic)
gdk_ic_destroy (m_ic);
#ifdef HAVE_XIM
if (m_ic)
gdk_ic_destroy (m_ic);
- if (m_parent)
- m_parent->RemoveChild( this );
-
#ifdef HAVE_XIM
if (m_ic)
gdk_ic_destroy (m_ic);
#ifdef HAVE_XIM
if (m_ic)
gdk_ic_destroy (m_ic);
- // CS: copied from MSW :
- // VS: destroy children first and _then_ detach *this from its parent.
- // If we'd do it the other way around, children wouldn't be able
- // find their parent frame (see above).
- if ( m_parent )
- m_parent->RemoveChild(this);
-
// delete our drop target if we've got one
#if wxUSE_DRAG_AND_DROP
if ( m_dropTarget != NULL )
// delete our drop target if we've got one
#if wxUSE_DRAG_AND_DROP
if ( m_dropTarget != NULL )
- // CS: copied from MSW :
- // VS: destroy children first and _then_ detach *this from its parent.
- // If we'd do it the other way around, children wouldn't be able
- // find their parent frame (see above).
- if ( m_parent )
- m_parent->RemoveChild(this);
-
// delete our drop target if we've got one
#if wxUSE_DRAG_AND_DROP
if ( m_dropTarget != NULL )
// delete our drop target if we've got one
#if wxUSE_DRAG_AND_DROP
if ( m_dropTarget != NULL )
if ( gs_windowUnderMouse == this )
gs_windowUnderMouse = NULL;
if ( gs_windowUnderMouse == this )
gs_windowUnderMouse = NULL;
- // VS: destroy children first and _then_ detach *this from its parent.
- // If we'd do it the other way around, children wouldn't be able
- // find their parent frame (see above).
- if ( m_parent )
- m_parent->RemoveChild(this);
-
if ( m_wnd )
MGL_wmDestroyWindow(m_wnd);
}
if ( m_wnd )
MGL_wmDestroyWindow(m_wnd);
}
- if ( m_parent )
- m_parent->RemoveChild( this );
-
// If m_drawingArea, we're a fully-fledged window with drawing area,
// scrollbars etc. (what wxCanvas used to be)
if ( m_drawingArea )
// If m_drawingArea, we're a fully-fledged window with drawing area,
// scrollbars etc. (what wxCanvas used to be)
if ( m_drawingArea )
// find their parent frame (see above).
DestroyChildren();
// find their parent frame (see above).
DestroyChildren();
- if ( m_parent )
- m_parent->RemoveChild(this);
-
if ( m_hWnd )
{
// VZ: test temp removed to understand what really happens here
if ( m_hWnd )
{
// VZ: test temp removed to understand what really happens here
- if (m_parent)
- m_parent->RemoveChild(this);
-
if (m_hWnd)
{
if(!::WinDestroyWindow(GetHWND()))
if (m_hWnd)
{
if(!::WinDestroyWindow(GetHWND()))
- if (m_parent)
- m_parent->RemoveChild( this );
-
DestroyChildren();
if (m_clientWindow != m_mainWindow)
DestroyChildren();
if (m_clientWindow != m_mainWindow)