X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/56d2f75071fc2a29ec10abe97c5a908bb35f30f4..c3e646b47f99fd832ab29c07554b533ea8a807e4:/contrib/src/xml/xml.cpp?ds=sidebyside diff --git a/contrib/src/xml/xml.cpp b/contrib/src/xml/xml.cpp index 284b870acb..0ed177189a 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; @@ -406,6 +406,7 @@ void wxXmlDocument::CleanUpHandlers() void wxXmlDocument::InitStandardHandlers() { AddHandler(new wxXmlIOHandlerBin); + AddHandler(new wxXmlIOHandlerBinZ); AddHandler(new wxXmlIOHandlerLibxml); }