]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_stlin.cpp
1) some cleanup in wxHtmlWindow, moved private structures out of headers
[wxWidgets.git] / contrib / src / xml / xh_stlin.cpp
index 546838654ca977c59c6bd3ca49b43be1df0d0f59..d65fc08fe6d9d1619117ea6f3bad91a4eeee1da5 100644 (file)
@@ -37,7 +37,7 @@ wxObject *wxStaticLineXmlHandler::DoCreateResource()
     wxStaticLine *line = new wxStaticLine(m_ParentAsWindow,
                                     GetID(),
                                     GetPosition(), GetSize(),
-                                    GetStyle(_T("style"), wxLI_HORIZONTAL),
+                                    GetStyle(wxT("style"), wxLI_HORIZONTAL),
                                     GetName()
                                     );
     SetupWindow(line);
@@ -49,7 +49,7 @@ wxObject *wxStaticLineXmlHandler::DoCreateResource()
 
 bool wxStaticLineXmlHandler::CanHandle(wxXmlNode *node)
 {
-    return IsOfClass(node, _T("wxStaticLine"));
+    return IsOfClass(node, wxT("wxStaticLine"));
 }
 
 #endif