X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e066e2566a4e5db3510fe6a204d66850eaeceade..cd4915e2c915d6c7611b38fa5182e2d84d1ca669:/contrib/src/xml/xh_text.cpp diff --git a/contrib/src/xml/xh_text.cpp b/contrib/src/xml/xh_text.cpp index 59d9ba87b1..a5d9b35a93 100644 --- a/contrib/src/xml/xh_text.cpp +++ b/contrib/src/xml/xh_text.cpp @@ -37,7 +37,7 @@ wxObject *wxTextCtrlXmlHandler::DoCreateResource() { wxTextCtrl *text = new wxTextCtrl(m_ParentAsWindow, GetID(), - GetText(_T("value")), + GetText(wxT("value")), GetPosition(), GetSize(), GetStyle(), wxDefaultValidator, @@ -52,7 +52,7 @@ wxObject *wxTextCtrlXmlHandler::DoCreateResource() bool wxTextCtrlXmlHandler::CanHandle(wxXmlNode *node) { - return IsOfClass(node, _T("wxTextCtrl")); + return IsOfClass(node, wxT("wxTextCtrl")); }