From: Vadim Zeitlin Date: Sun, 18 Dec 2005 14:49:38 +0000 (+0000) Subject: use correct encoding when saving in non-Unicode builds X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/24c80a284c7eaa3652f13c7a491a506623bd5e16 use correct encoding when saving in non-Unicode builds git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36430 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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();