Debugger: add support for dumping non-ASCII UTF-8 QChar

Change-Id: I87d9557c1e5b945972ddf3f63f8cb064514a3b54
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Martin Bohacek
2013-09-26 16:29:13 +02:00
committed by hjk
parent 6b8781bd84
commit ed062e85f0
5 changed files with 21 additions and 33 deletions
+4 -3
View File
@@ -456,7 +456,7 @@ def cleanAddress(addr):
# Some "Enums"
# Encodings. Keep that synchronized with DebuggerEncoding in watchutils.h
# Encodings. Keep that synchronized with DebuggerEncoding in debuggerprotocol.h
Unencoded8Bit, \
Base64Encoded8BitWithQuotes, \
Base64Encoded16BitWithQuotes, \
@@ -484,8 +484,9 @@ Hex2EncodedUInt4, \
Hex2EncodedUInt8, \
Hex2EncodedFloat4, \
Hex2EncodedFloat8, \
IPv6AddressAndHexScopeId \
= range(28)
IPv6AddressAndHexScopeId, \
Hex2EncodedUtf8WithoutQuotes \
= range(29)
# Display modes. Keep that synchronized with DebuggerDisplay in watchutils.h
StopDisplay, \