diff options
author | hjk <[email protected]> | 2010-09-15 19:02:12 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2010-09-15 19:02:35 +0200 |
commit | bd2d160a9506c41cb861e560c4f8e648aefcad4c (patch) | |
tree | 111ec291741da3620ff137886fc85e97dd939b60 /src/plugins/debugger/watchhandler.cpp | |
parent | 2e02f4cb271e13ec72af1317c9246d3c71d617fb (diff) |
debugger: suppress variable tooltips with outdated contents
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 7d55dc7f413..2871f2135ab 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1661,5 +1661,11 @@ void WatchHandler::showInEditorHelper(QString *contents, WatchItem *item, int de showInEditorHelper(contents, child, depth + 1); } +void WatchHandler::removeTooltip() +{ + m_tooltips->reinitialize(); + m_tooltips->emitAllChanged(); +} + } // namespace Internal } // namespace Debugger |