X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..88db1d64cb9e20de436a3503952dc9303060c33a:/src/xrc/xh_spin.cpp?ds=sidebyside diff --git a/src/xrc/xh_spin.cpp b/src/xrc/xh_spin.cpp index 6419ef5cca..c6ad0fcf92 100644 --- a/src/xrc/xh_spin.cpp +++ b/src/xrc/xh_spin.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_spin.h" #endif @@ -24,8 +24,10 @@ #if wxUSE_SPINBTN -wxSpinButtonXmlHandler::wxSpinButtonXmlHandler() -: wxXmlResourceHandler() +IMPLEMENT_DYNAMIC_CLASS(wxSpinButtonXmlHandler, wxXmlResourceHandler) + +wxSpinButtonXmlHandler::wxSpinButtonXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxSP_HORIZONTAL); XRC_ADD_STYLE(wxSP_VERTICAL); @@ -35,7 +37,7 @@ wxSpinButtonXmlHandler::wxSpinButtonXmlHandler() } wxObject *wxSpinButtonXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxSpinButton) control->Create(m_parentAsWindow, @@ -48,7 +50,7 @@ wxObject *wxSpinButtonXmlHandler::DoCreateResource() control->SetRange(GetLong( wxT("min"), wxSP_DEFAULT_MIN), GetLong(wxT("max"), wxSP_DEFAULT_MAX)); SetupWindow(control); - + return control; } @@ -61,8 +63,10 @@ bool wxSpinButtonXmlHandler::CanHandle(wxXmlNode *node) #if wxUSE_SPINCTRL -wxSpinCtrlXmlHandler::wxSpinCtrlXmlHandler() -: wxXmlResourceHandler() +IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlXmlHandler, wxXmlResourceHandler) + +wxSpinCtrlXmlHandler::wxSpinCtrlXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxSP_HORIZONTAL); XRC_ADD_STYLE(wxSP_VERTICAL); @@ -71,9 +75,9 @@ wxSpinCtrlXmlHandler::wxSpinCtrlXmlHandler() } wxObject *wxSpinCtrlXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxSpinCtrl) - + control->Create(m_parentAsWindow, GetID(), GetText(wxT("value")), @@ -85,7 +89,7 @@ wxObject *wxSpinCtrlXmlHandler::DoCreateResource() GetName()); SetupWindow(control); - + return control; }