X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/456bc6d9b83882a3b0e919fc733898d9d331ecd6..8f974c520a8733158591891458fda10fae4c3950:/src/generic/panelg.cpp?ds=inline diff --git a/src/generic/panelg.cpp b/src/generic/panelg.cpp index f42365f225..aa5e3ec426 100644 --- a/src/generic/panelg.cpp +++ b/src/generic/panelg.cpp @@ -57,7 +57,7 @@ END_EVENT_TABLE() // implementation // ============================================================================ -WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel, m_container) +WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel) // ---------------------------------------------------------------------------- // wxPanel creation @@ -65,7 +65,7 @@ WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel, m_container) void wxPanel::Init() { - m_container = new wxControlContainer(this); + m_container.SetContainerWindow(this); } bool wxPanel::Create(wxWindow *parent, wxWindowID id, @@ -79,7 +79,6 @@ bool wxPanel::Create(wxWindow *parent, wxWindowID id, wxPanel::~wxPanel() { - delete m_container; } // ----------------------------------------------------------------------------