X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/854e189f90dac9ba5e0239bca79aed64e8d6f46c..166bcebb8e87aefb42de52d22d567a8fa316928d:/contrib/src/xrc/xh_stlin.cpp diff --git a/contrib/src/xrc/xh_stlin.cpp b/contrib/src/xrc/xh_stlin.cpp index 7cc5abc08b..9d49226eab 100644 --- a/contrib/src/xrc/xh_stlin.cpp +++ b/contrib/src/xrc/xh_stlin.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Brian Gavin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_stlin.h" #endif @@ -26,8 +26,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxStaticLineXmlHandler, wxXmlResourceHandler) -wxStaticLineXmlHandler::wxStaticLineXmlHandler() -: wxXmlResourceHandler() +wxStaticLineXmlHandler::wxStaticLineXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxLI_HORIZONTAL); XRC_ADD_STYLE(wxLI_VERTICAL); @@ -35,7 +35,7 @@ wxStaticLineXmlHandler::wxStaticLineXmlHandler() } wxObject *wxStaticLineXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(line, wxStaticLine) line->Create(m_parentAsWindow, @@ -45,7 +45,7 @@ wxObject *wxStaticLineXmlHandler::DoCreateResource() GetName()); SetupWindow(line); - + return line; }