]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xml.cpp
_T() -> wxT()
[wxWidgets.git] / contrib / src / xml / xml.cpp
index 89ed5a56d9da7f5f0404ba20495174051dcc6022..0ed177189aa49c06abb2b996399cf515aec98b38 100644 (file)
@@ -168,7 +168,7 @@ void wxXmlNode::AddChild(wxXmlNode *child)
 
 void wxXmlNode::InsertChild(wxXmlNode *child, wxXmlNode *before_node)
 {
-    wxASSERT_MSG(before_node->GetParent() == this, _T("wxXmlNode::InsertChild - the node has incorrect parent"));
+    wxASSERT_MSG(before_node->GetParent() == this, wxT("wxXmlNode::InsertChild - the node has incorrect parent"));
 
     if (m_Children == before_node)
        m_Children = child;