]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_stlin.cpp
removed libxpm dependencies from makefiles
[wxWidgets.git] / contrib / src / xml / xh_stlin.cpp
index 546838654ca977c59c6bd3ca49b43be1df0d0f59..ae9d9f0b6e1b5b18d11e29e2a5606995a44b6ddd 100644 (file)
@@ -34,10 +34,10 @@ wxStaticLineXmlHandler::wxStaticLineXmlHandler()
 
 wxObject *wxStaticLineXmlHandler::DoCreateResource()
 { 
 
 wxObject *wxStaticLineXmlHandler::DoCreateResource()
 { 
-    wxStaticLine *line = new wxStaticLine(m_ParentAsWindow,
+    wxStaticLine *line = new wxStaticLine(m_parentAsWindow,
                                     GetID(),
                                     GetPosition(), GetSize(),
                                     GetID(),
                                     GetPosition(), GetSize(),
-                                    GetStyle(_T("style"), wxLI_HORIZONTAL),
+                                    GetStyle(wxT("style"), wxLI_HORIZONTAL),
                                     GetName()
                                     );
     SetupWindow(line);
                                     GetName()
                                     );
     SetupWindow(line);
@@ -49,7 +49,7 @@ wxObject *wxStaticLineXmlHandler::DoCreateResource()
 
 bool wxStaticLineXmlHandler::CanHandle(wxXmlNode *node)
 {
 
 bool wxStaticLineXmlHandler::CanHandle(wxXmlNode *node)
 {
-    return IsOfClass(node, _T("wxStaticLine"));
+    return IsOfClass(node, wxT("wxStaticLine"));
 }
 
 #endif
 }
 
 #endif