git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45729
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxMDIParentFrame::AddChild(wxWindowBase *child)
{
void wxMDIParentFrame::AddChild(wxWindowBase *child)
{
+ // moved this to front, so that we don't run into unset m_parent problems later
+ wxFrame::AddChild(child);
+
if ( !m_currentChild )
{
m_currentChild = wxDynamicCast(child, wxMDIChildFrame);
if ( !m_currentChild )
{
m_currentChild = wxDynamicCast(child, wxMDIChildFrame);
m_shouldBeShown = true;
}
}
m_shouldBeShown = true;
}
}
-
- wxFrame::AddChild(child);
}
void wxMDIParentFrame::RemoveChild(wxWindowBase *child)
}
void wxMDIParentFrame::RemoveChild(wxWindowBase *child)