aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/watchhandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2011-11-11 17:51:29 +0100
committerhjk <[email protected]>2011-11-11 17:54:13 +0100
commit0e0b356bd7fd7b9de243cb8a3968ced51c5e0d48 (patch)
tree39248feec1a7f3b7b029befdefdee701aba6494d /src/plugins/debugger/watchhandler.cpp
parent5d810a65b35c331cc7feb42d7deecac35bd08336 (diff)
debugger: show vtable ptr in hex, also with gdb
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r--src/plugins/debugger/watchhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp
index 1a60eb1b4fe..2c80c368b75 100644
--- a/src/plugins/debugger/watchhandler.cpp
+++ b/src/plugins/debugger/watchhandler.cpp
@@ -428,7 +428,7 @@ QString WatchModel::formattedValue(const WatchData &data) const
if (data.type == "va_list")
return value;
- if (!isPointerType(data.type) && !isVTablePointer(data.type)) {
+ if (!isPointerType(data.type) && !data.isVTablePointer()) {
bool ok = false;
qulonglong integer = value.toULongLong(&ok, 0);
if (ok)