From 09dc9bfa7af365fb21ef7e366a0da40606c1b4e7 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 3 Sep 2013 13:01:52 +0200 Subject: [PATCH] Debugger: Recognize "unsigned int" as int type. Enabling the hex tooltip in the watchhandler. Change-Id: I8fdca8a7e741e47ae9cff19161746051b14581d0 Reviewed-by: hjk --- src/plugins/debugger/watchdata.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/debugger/watchdata.cpp b/src/plugins/debugger/watchdata.cpp index 5478e735c7f..9cbe253d7e4 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"