X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f2ab8671bf5433eee5862bfa723feb54e4d63e9f..a559d70856c65f8fd91d6e56c3e98c3828e18db7:/contrib/src/xml/xh_radbt.cpp diff --git a/contrib/src/xml/xh_radbt.cpp b/contrib/src/xml/xh_radbt.cpp index d8306a034d..4be009e0a9 100644 --- a/contrib/src/xml/xh_radbt.cpp +++ b/contrib/src/xml/xh_radbt.cpp @@ -42,14 +42,14 @@ wxObject *wxRadioButtonXmlHandler::DoCreateResource() wxRadioButton *control = new wxRadioButton(m_ParentAsWindow, GetID(), - GetText(_T("label")), + GetText(wxT("label")), GetPosition(), GetSize(), GetStyle(), wxDefaultValidator, GetName() ); - control->SetValue( GetBool(_T("value"), 0)); + control->SetValue( GetBool(wxT("value"), 0)); SetupWindow(control); return control; @@ -59,7 +59,7 @@ wxObject *wxRadioButtonXmlHandler::DoCreateResource() bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node) { - return IsOfClass(node, _T("wxRadioButton")); + return IsOfClass(node, wxT("wxRadioButton")); }