summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-09-03 13:01:52 +0200
committerhjk <hjk121@nokiamail.com>2013-09-03 13:14:18 +0200
commit09dc9bfa7af365fb21ef7e366a0da40606c1b4e7 (patch)
tree847e9ed7c63079616c90de2ce4ff5d8b503305ff
parent2a172c7584466c428f5de1c302fed83823697f3f (diff)
downloadqt-creator-09dc9bfa7af365fb21ef7e366a0da40606c1b4e7.tar.gz
Debugger: Recognize "unsigned int" as int type.
Enabling the hex tooltip in the watchhandler. Change-Id: I8fdca8a7e741e47ae9cff19161746051b14581d0 Reviewed-by: hjk <hjk121@nokiamail.com>
-rw-r--r--src/plugins/debugger/watchdata.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchdata.cpp b/src/plugins/debugger/watchdata.cpp
index 5478e735c7..9cbe253d7e 100644
--- a/src/plugins/debugger/watchdata.cpp
+++ b/src/plugins/debugger/watchdata.cpp
@@ -98,6 +98,7 @@ bool isIntType(const QByteArray &type)
( type == "unsigned char"
|| type == "unsigned short"
|| type == "unsigned short int"
+ || type == "unsigned int"
|| type == "unsigned long"
|| type == "unsigned long int"
|| type == "unsigned long long"