forked from qt-creator/qt-creator
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user