X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..31ad423e4fb556ec225a63b161154d3bf3445c1b:/contrib/src/xrc/xh_sttxt.cpp diff --git a/contrib/src/xrc/xh_sttxt.cpp b/contrib/src/xrc/xh_sttxt.cpp index 955642ed64..a65e2b4b4f 100644 --- a/contrib/src/xrc/xh_sttxt.cpp +++ b/contrib/src/xrc/xh_sttxt.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_sttxt.h" #endif @@ -22,8 +22,10 @@ #include "wx/xrc/xh_sttxt.h" #include "wx/stattext.h" -wxStaticTextXmlHandler::wxStaticTextXmlHandler() -: wxXmlResourceHandler() +IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler) + +wxStaticTextXmlHandler::wxStaticTextXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxST_NO_AUTORESIZE); XRC_ADD_STYLE(wxALIGN_LEFT); @@ -33,7 +35,7 @@ wxStaticTextXmlHandler::wxStaticTextXmlHandler() } wxObject *wxStaticTextXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(text, wxStaticText) text->Create(m_parentAsWindow, @@ -44,7 +46,7 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() GetName()); SetupWindow(text); - + return text; }