diff --git a/src/xml/xml.cpp b/src/xml/xml.cpp index 53ae70865b..1d567b96c8 100644 --- a/src/xml/xml.cpp +++ b/src/xml/xml.cpp @@ -687,7 +687,7 @@ static void OutputNode(wxOutputStream& stream, wxXmlNode *node, int indent, { OutputString(stream, wxT(" ") + prop->GetName() + wxT("=\""), NULL, NULL); - OutputStringEnt(stream, prop->GetValue(), NULL, NULL, + OutputStringEnt(stream, prop->GetValue(), convMem, convFile, true/*escapeQuotes*/); OutputString(stream, wxT("\""), NULL, NULL); prop = prop->GetNext();