diff options
author | hjk <hjk@theqtcompany.com> | 2016-05-17 15:01:46 +0200 |
---|---|---|
committer | hjk <hjk@theqtcompany.com> | 2016-05-17 16:01:52 +0000 |
commit | e9e47ab452eb1c2f38e1e6e0ffc141734f120324 (patch) | |
tree | 3cac5c68507ed3d565a5056ae2ac2d1b04956d1b /src/plugins/debugger/watchhandler.cpp | |
parent | b5d64415626759a8bc452f652d195f7c03e213b9 (diff) | |
download | qt-creator-e9e47ab452eb1c2f38e1e6e0ffc141734f120324.tar.gz |
Debugger: Allow re-evaluation of certain expressions without stepping
There are cases like changing an Evaluated Expression that make
re-evaluation necessary.
Change-Id: I51fe46b67399a59aebbdeb9c3e778795b1c52cf1
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
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 18786f2cf0..bcbeffbaaa 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1445,7 +1445,7 @@ void WatchHandler::watchExpression(const QString &exp0, const QString &name) item->setValue(QString(QLatin1Char(' '))); item->update(); } else { - m_model->m_engine->updateItem(item->iname); + m_model->m_engine->updateWatchData(item->iname); } updateWatchersWindow(); } |