]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_radbt.cpp
_T() -> wxT()
[wxWidgets.git] / contrib / src / xml / xh_radbt.cpp
index d8306a034d2a82399ea6a9c275b93ecd493e406b..4be009e0a9525df459416b4b17f1ffa844da2d00 100644 (file)
@@ -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"));
 }