X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e066e2566a4e5db3510fe6a204d66850eaeceade..e1fdd3f3d9a0a065eb27c8bc176f51a47e43e412:/contrib/src/xml/xh_chckb.cpp?ds=sidebyside diff --git a/contrib/src/xml/xh_chckb.cpp b/contrib/src/xml/xh_chckb.cpp index 0351054f8f..057de6e462 100644 --- a/contrib/src/xml/xh_chckb.cpp +++ b/contrib/src/xml/xh_chckb.cpp @@ -34,14 +34,14 @@ wxObject *wxCheckBoxXmlHandler::DoCreateResource() { wxCheckBox *control = new wxCheckBox(m_ParentAsWindow, GetID(), - GetText(_T("label")), + GetText(wxT("label")), GetPosition(), GetSize(), GetStyle(), wxDefaultValidator, GetName() ); - control->SetValue( GetBool( _T("checked"))); + control->SetValue( GetBool( wxT("checked"))); SetupWindow(control); return control; @@ -51,7 +51,7 @@ wxObject *wxCheckBoxXmlHandler::DoCreateResource() bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node) { - return IsOfClass(node, _T("wxCheckBox")); + return IsOfClass(node, wxT("wxCheckBox")); } #endif