diff options
author | hjk <[email protected]> | 2010-03-23 14:48:07 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2010-03-23 14:48:32 +0100 |
commit | 59af793953a8d80aa7e893121e71abac6f0ba132 (patch) | |
tree | a3db8e0c68214700f51018876e86c087c220eb53 /src/plugins/debugger/watchhandler.cpp | |
parent | a080b8df662e1a6b41bddb9cf54622a5385aaa9b (diff) |
debugger: polish address display. also remove the mostly unused 'stored' address
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index ff7eab54fcb..6b92c0de57c 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -134,7 +134,6 @@ bool WatchData::isEqual(const WatchData &other) const && displayedType == other.displayedType && variable == other.variable && addr == other.addr - && saddr == other.saddr && framekey == other.framekey && hasChildren == other.hasChildren && valueEnabled == other.valueEnabled @@ -321,7 +320,6 @@ QString WatchData::toToolTip() const } formatToolTipRow(str, WatchHandler::tr("Value"), val); formatToolTipRow(str, WatchHandler::tr("Object Address"), addr); - formatToolTipRow(str, WatchHandler::tr("Stored Address"), saddr); formatToolTipRow(str, WatchHandler::tr("Internal ID"), iname); formatToolTipRow(str, WatchHandler::tr("Generation"), QString::number(generation)); |