X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5d6954b87d910969226ffade9714db7429211f3..d56327cd0662d31960bea19c7570fd9854af1bd0:/contrib/src/xrc/xh_stlin.cpp diff --git a/contrib/src/xrc/xh_stlin.cpp b/contrib/src/xrc/xh_stlin.cpp index 72955efbae..340dc4e945 100644 --- a/contrib/src/xrc/xh_stlin.cpp +++ b/contrib/src/xrc/xh_stlin.cpp @@ -27,26 +27,26 @@ wxStaticLineXmlHandler::wxStaticLineXmlHandler() : wxXmlResourceHandler() { - ADD_STYLE(wxLI_HORIZONTAL); - ADD_STYLE(wxLI_VERTICAL); + XRC_ADD_STYLE(wxLI_HORIZONTAL); + XRC_ADD_STYLE(wxLI_VERTICAL); AddWindowStyles(); } wxObject *wxStaticLineXmlHandler::DoCreateResource() { - wxStaticLine *line = new wxStaticLine(m_parentAsWindow, - GetID(), - GetPosition(), GetSize(), - GetStyle(wxT("style"), wxLI_HORIZONTAL), - GetName() - ); + XRC_MAKE_INSTANCE(line, wxStaticLine) + + line->Create(m_parentAsWindow, + GetID(), + GetPosition(), GetSize(), + GetStyle(wxT("style"), wxLI_HORIZONTAL), + GetName()); + SetupWindow(line); return line; } - - bool wxStaticLineXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxStaticLine"));