X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6ba549f2a5674c41abbd140197c81d08f4df21d7..892aeafc2a0212b4c3bebcaddd96a42cdd307afd:/contrib/src/xml/xml.cpp diff --git a/contrib/src/xml/xml.cpp b/contrib/src/xml/xml.cpp index 89ed5a56d9..c7fc2f4746 100644 --- a/contrib/src/xml/xml.cpp +++ b/contrib/src/xml/xml.cpp @@ -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; @@ -275,6 +275,8 @@ bool wxXmlNode::DeleteProperty(const wxString& name) +wxList *wxXmlDocument::sm_Handlers = NULL; + wxXmlDocument::wxXmlDocument(const wxString& filename, wxXmlIOType io_type) @@ -383,8 +385,6 @@ bool wxXmlDocument::Save(wxOutputStream& stream, wxXmlIOType io_type) const -wxList *wxXmlDocument::sm_Handlers = NULL; - void wxXmlDocument::AddHandler(wxXmlIOHandler *handler) { if (sm_Handlers == NULL)