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:
hjk
2015-12-14 11:39:36 +01:00
committed by David Schulz
parent 44bb3cb4c3
commit d72cb777ec
4 changed files with 4 additions and 11 deletions

View File

@@ -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)