X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/854e189f90dac9ba5e0239bca79aed64e8d6f46c..b9efe021b554fa3967d1442cf758435c5cd5ae8f:/src/xrc/xh_sttxt.cpp diff --git a/src/xrc/xh_sttxt.cpp b/src/xrc/xh_sttxt.cpp index e94e9fdbd2..9397992d87 100644 --- a/src/xrc/xh_sttxt.cpp +++ b/src/xrc/xh_sttxt.cpp @@ -7,8 +7,8 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ + +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "xh_sttxt.h" #endif @@ -19,13 +19,15 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_sttxt.h" #include "wx/stattext.h" IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler) -wxStaticTextXmlHandler::wxStaticTextXmlHandler() -: wxXmlResourceHandler() +wxStaticTextXmlHandler::wxStaticTextXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxST_NO_AUTORESIZE); XRC_ADD_STYLE(wxALIGN_LEFT); @@ -35,7 +37,7 @@ wxStaticTextXmlHandler::wxStaticTextXmlHandler() } wxObject *wxStaticTextXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(text, wxStaticText) text->Create(m_parentAsWindow, @@ -46,7 +48,7 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() GetName()); SetupWindow(text); - + return text; } @@ -54,3 +56,5 @@ bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxStaticText")); } + +#endif // wxUSE_XRC