]> git.saurik.com Git - wxWidgets.git/commitdiff
use correct encoding when saving in non-Unicode builds
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Dec 2005 14:49:38 +0000 (14:49 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Dec 2005 14:49:38 +0000 (14:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36430 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/xml/xml.cpp

index 53ae70865be4101f7d8095e00816d68f3eadc923..1d567b96c8a826ddf3c25ded662a3c0bbdd0466f 100644 (file)
@@ -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();