// Copyright: (c) 2000 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
+
#ifdef __GNUG__
#pragma implementation "xh_panel.h"
#endif
#include "wx/xrc/xh_panel.h"
#include "wx/panel.h"
+#include "wx/frame.h" // to get wxNO_3D
+IMPLEMENT_DYNAMIC_CLASS(wxPanelXmlHandler, wxXmlResourceHandler)
wxPanelXmlHandler::wxPanelXmlHandler() : wxXmlResourceHandler()
{
}
wxObject *wxPanelXmlHandler::DoCreateResource()
-{
+{
XRC_MAKE_INSTANCE(panel, wxPanel)
panel->Create(m_parentAsWindow,
SetupWindow(panel);
CreateChildren(panel);
-
+
return panel;
}