X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..ffdf1b49033b9a2d9cfda3580bc982eeb70cc3d7:/contrib/src/xrc/xh_panel.cpp?ds=sidebyside diff --git a/contrib/src/xrc/xh_panel.cpp b/contrib/src/xrc/xh_panel.cpp index 07653815f7..b05433b018 100644 --- a/contrib/src/xrc/xh_panel.cpp +++ b/contrib/src/xrc/xh_panel.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_panel.h" #endif @@ -21,19 +21,21 @@ #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() { XRC_ADD_STYLE(wxNO_3D); XRC_ADD_STYLE(wxTAB_TRAVERSAL); XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); - XRC_ADD_STYLE(wxCLIP_CHILDREN); + AddWindowStyles(); } wxObject *wxPanelXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(panel, wxPanel) panel->Create(m_parentAsWindow, @@ -44,7 +46,7 @@ wxObject *wxPanelXmlHandler::DoCreateResource() SetupWindow(panel); CreateChildren(panel); - + return panel; }