]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_stbox.cpp
fixed memory leak in wxZlibInputStream
[wxWidgets.git] / contrib / src / xml / xh_stbox.cpp
index 1f49da12c1ed17774dd5a630bbdae37ed2d944d6..2572364e3effc56cb541581ac65587e902f5c35a 100644 (file)
@@ -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"));
 }