diff options
author | hjk <[email protected]> | 2012-01-16 18:49:01 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2012-01-16 18:53:40 +0100 |
commit | 3d39451b15757f3fca93dddc4982f74a4104da80 (patch) | |
tree | 8f3a25be45d94c541930f78d8b0d9cb7551c52d6 /src/plugins/debugger/watchhandler.cpp | |
parent | e8598fa3dd751e20a4d8bf6d7024ee5f8a0bc9da (diff) |
debugger: show address of the target object when auto-dereferencing
Task-number: QTCREATORBUG-6813
Change-Id: Iaf1436a41cd22f46e8a8c369f942a3dba127cc6e
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 2 |
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: |