]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_sttxt.cpp
removed libxpm dependencies from makefiles
[wxWidgets.git] / contrib / src / xml / xh_sttxt.cpp
index 4627292fcb8979a170d9de288ee21b30b465a333..bfecff25845ccd22337ad6672a72ce79807b4d1a 100644 (file)
@@ -31,9 +31,9 @@ wxStaticTextXmlHandler::wxStaticTextXmlHandler()
 
 wxObject *wxStaticTextXmlHandler::DoCreateResource()
 { 
-    wxStaticText *text = new wxStaticText(m_ParentAsWindow,
+    wxStaticText *text = new wxStaticText(m_parentAsWindow,
                                     GetID(),
-                                    GetText(_T("label")),
+                                    GetText(wxT("label")),
                                     GetPosition(), GetSize(),
                                     GetStyle(),
                                     GetName()
@@ -47,7 +47,7 @@ wxObject *wxStaticTextXmlHandler::DoCreateResource()
 
 bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node)
 {
-    return IsOfClass(node, _T("wxStaticText"));
+    return IsOfClass(node, wxT("wxStaticText"));
 }