-WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel)
-
-// ----------------------------------------------------------------------------
-// wxPanel creation
-// ----------------------------------------------------------------------------
-
-void wxPanel::Init()
-{
- m_container.SetContainerWindow(this);
-}
-
-bool wxPanel::Create(wxWindow *parent, wxWindowID id,
- const wxPoint& pos,
- const wxSize& size,
- long style,
- const wxString& name)
-{
- return wxWindow::Create(parent, id, pos, size, style, name);
-}
-
-wxPanel::~wxPanel()