X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e066e2566a4e5db3510fe6a204d66850eaeceade..892aeafc2a0212b4c3bebcaddd96a42cdd307afd:/contrib/src/xml/xh_sttxt.cpp diff --git a/contrib/src/xml/xh_sttxt.cpp b/contrib/src/xml/xh_sttxt.cpp index 4627292fcb..fbf8fd0938 100644 --- a/contrib/src/xml/xh_sttxt.cpp +++ b/contrib/src/xml/xh_sttxt.cpp @@ -33,7 +33,7 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() { wxStaticText *text = new wxStaticText(m_ParentAsWindow, GetID(), - GetText(_T("label")), + GetText(wxT("label")), GetPosition(), GetSize(), GetStyle(), GetName() @@ -47,7 +47,7 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource() bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node) { - return IsOfClass(node, _T("wxStaticText")); + return IsOfClass(node, wxT("wxStaticText")); }