Debugger: Fix transfer of non-8-bit output with LLDB

Task-number: QTCREATORBUG-17533
Change-Id: Ib8f700cf1705273b22ee1ee4700d1a1d468fa2d0
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2017-02-22 14:52:51 +01:00
parent ef50012e31
commit 62726c3f77

View File

@@ -887,7 +887,7 @@ QString DebuggerEncoding::toString() const
QString fromHex(const QString &str)
{
return QString::fromLatin1(QByteArray::fromHex(str.toUtf8()));
return QString::fromUtf8(QByteArray::fromHex(str.toUtf8()));
}
QString toHex(const QString &str)