X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6cc78259af5f54b52b53523e8c9a22ec33a46060..f53b1c1e6f5546e9916debbf5f93c652edca0ef6:/contrib/src/xrc/xh_scrol.cpp diff --git a/contrib/src/xrc/xh_scrol.cpp b/contrib/src/xrc/xh_scrol.cpp index ac99ba1b40..f1c6fcba19 100644 --- a/contrib/src/xrc/xh_scrol.cpp +++ b/contrib/src/xrc/xh_scrol.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Brian Gavin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_scrol.h" #endif @@ -24,8 +24,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxScrollBarXmlHandler, wxXmlResourceHandler) -wxScrollBarXmlHandler::wxScrollBarXmlHandler() -: wxXmlResourceHandler() +wxScrollBarXmlHandler::wxScrollBarXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxSB_HORIZONTAL); XRC_ADD_STYLE(wxSB_VERTICAL); @@ -33,7 +33,7 @@ wxScrollBarXmlHandler::wxScrollBarXmlHandler() } wxObject *wxScrollBarXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxScrollBar) control->Create(m_parentAsWindow, @@ -43,14 +43,14 @@ wxObject *wxScrollBarXmlHandler::DoCreateResource() wxDefaultValidator, GetName()); - control->SetScrollbar(GetLong( wxT("value"), 0), + control->SetScrollbar(GetLong( wxT("value"), 0), GetLong( wxT("thumbsize"),1), GetLong( wxT("range"), 10), GetLong( wxT("pagesize"),1)); SetupWindow(control); CreateChildren(control); - + return control; }