aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/watchhandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2012-01-16 18:49:01 +0100
committerhjk <[email protected]>2012-01-16 18:53:40 +0100
commit3d39451b15757f3fca93dddc4982f74a4104da80 (patch)
tree8f3a25be45d94c541930f78d8b0d9cb7551c52d6 /src/plugins/debugger/watchhandler.cpp
parente8598fa3dd751e20a4d8bf6d7024ee5f8a0bc9da (diff)
debugger: show address of the target object when auto-dereferencing
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 b744e1765d2..07b86092041 100644
--- a/src/plugins/debugger/watchhandler.cpp
+++ b/src/plugins/debugger/watchhandler.cpp
@@ -726,7 +726,7 @@ QString WatchModel::display(const WatchItem *item, int col) const
truncateValue(formattedValue(*item)));
if (item->referencingAddress) {
result += QLatin1String(" @");
- result += QString::fromLatin1(item->hexAddress());
+ result += QString::fromLatin1(item->hexReferencingAddress());
}
break;
case 2: