X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e066e2566a4e5db3510fe6a204d66850eaeceade..45805ba32255e4115b2ddddc15a5db5720ecb7ba:/contrib/src/xml/xh_stbox.cpp?ds=inline diff --git a/contrib/src/xml/xh_stbox.cpp b/contrib/src/xml/xh_stbox.cpp index 1f49da12c1..2572364e3e 100644 --- a/contrib/src/xml/xh_stbox.cpp +++ b/contrib/src/xml/xh_stbox.cpp @@ -32,7 +32,7 @@ wxObject *wxStaticBoxXmlHandler::DoCreateResource() { wxStaticBox *box = new wxStaticBox(m_ParentAsWindow, GetID(), - GetText(_T("label")), + GetText(wxT("label")), GetPosition(), GetSize(), GetStyle(), GetName() @@ -46,7 +46,7 @@ wxObject *wxStaticBoxXmlHandler::DoCreateResource() bool wxStaticBoxXmlHandler::CanHandle(wxXmlNode *node) { - return IsOfClass(node, _T("wxStaticBox")); + return IsOfClass(node, wxT("wxStaticBox")); }