CLI: Fix XML encoding when export database

Add write function to TextStream
Fix #3900
This commit is contained in:
Balazs Gyurak
2019-11-29 19:12:50 +00:00
committed by Jonathan White
parent 792c1c94f7
commit 06e0f38523
3 changed files with 12 additions and 1 deletions

View File

@@ -58,6 +58,15 @@ TextStream::TextStream(const QByteArray& array, QIODevice::OpenMode openMode)
detectCodec();
}
void TextStream::write(const char* str)
{
// Workaround for an issue with QTextStream. Its operator<<(const char *string) will encode the
// string with a non-UTF-8 encoding. We work around this by wrapping the input string into
// a QString, thus enforcing UTF-8. More info:
// https://code.qt.io/cgit/qt/qtbase.git/commit?id=cec8cdba4d1b856e17c8743ba8803349d42dc701
*this << QString(str);
}
void TextStream::detectCodec()
{
QString codecName = "UTF-8";