X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c575e45a24711793f98959a1f394a9e528c3129a..3d63133a5ef146494fa821c76c705e535990086a:/src/xrc/xh_sttxt.cpp diff --git a/src/xrc/xh_sttxt.cpp b/src/xrc/xh_sttxt.cpp index 9397992d87..229c5526f8 100644 --- a/src/xrc/xh_sttxt.cpp +++ b/src/xrc/xh_sttxt.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_sttxt.cpp +// Name: src/xrc/xh_sttxt.cpp // Purpose: XRC resource for wxStaticText // Author: Bob Mitchell // Created: 2000/03/21 @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "xh_sttxt.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,10 +15,13 @@ #pragma hdrstop #endif -#if wxUSE_XRC +#if wxUSE_XRC && wxUSE_STATTEXT #include "wx/xrc/xh_sttxt.h" -#include "wx/stattext.h" + +#ifndef WX_PRECOMP + #include "wx/stattext.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler) @@ -41,11 +40,11 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() XRC_MAKE_INSTANCE(text, wxStaticText) text->Create(m_parentAsWindow, - GetID(), - GetText(wxT("label")), - GetPosition(), GetSize(), - GetStyle(), - GetName()); + GetID(), + GetText(wxT("label")), + GetPosition(), GetSize(), + GetStyle(), + GetName()); SetupWindow(text); @@ -57,4 +56,4 @@ bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxStaticText")); } -#endif // wxUSE_XRC +#endif // wxUSE_XRC && wxUSE_STATTEXT