No real changes, just replace wxT() with wxS() in wxXML code.

See #13779.
This commit is contained in:
Vadim Zeitlin
2015-04-24 20:14:38 +02:00
parent 401b8a8fe3
commit 41b1ed9c2e

View File

@@ -1092,11 +1092,11 @@ bool OutputNode(wxOutputStream& stream,
break;
case wxXML_PI_NODE:
rc = OutputString(stream, wxT("<?"), convMem, convFile) &&
rc = OutputString(stream, wxS("<?"), convMem, convFile) &&
OutputString(stream, node->GetName(), convMem, convFile) &&
OutputString(stream, wxT(" "), convMem, convFile) &&
OutputString(stream, wxS(" "), convMem, convFile) &&
OutputString(stream, node->GetContent(), convMem, convFile) &&
OutputString(stream, wxT("?>"), convMem, convFile);
OutputString(stream, wxS("?>"), convMem, convFile);
break;
default: