forked from qt-creator/qt-creator
Debugger: Use hex instead of base64 encoding for CDB debuggee output
Simplifies code. Change-Id: Iaabb4b32f7b351d04b512cc132f990a1061da3b5 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
@@ -352,14 +352,6 @@ QString debugByteArray(const QByteArray &a)
|
||||
return rc;
|
||||
}
|
||||
|
||||
QString StringFromBase64EncodedUtf16(const QByteArray &a)
|
||||
{
|
||||
QByteArray utf16 = QByteArray::fromBase64(a);
|
||||
utf16.append('\0');
|
||||
utf16.append('\0');
|
||||
return QString::fromUtf16(reinterpret_cast<const unsigned short *>(utf16.constData()));
|
||||
}
|
||||
|
||||
WinException::WinException() :
|
||||
exceptionCode(0), exceptionFlags(0), exceptionAddress(0),
|
||||
info1(0),info2(0), firstChance(false), lineNumber(0)
|
||||
|
||||
Reference in New Issue
Block a user