aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/watchhandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2012-09-04 15:02:00 +0200
committerhjk <[email protected]>2012-09-07 15:02:00 +0200
commit00f7677fc4bf169c6ff98f7e2c850edc2292a8c5 (patch)
tree2739238f74f0642f33f528583c96339f741921a2 /src/plugins/debugger/watchhandler.cpp
parent0e9568da3ff5a1e2e5f3896a882d93f019dbdf16 (diff)
debugger: fix "Display in Separate Window" for QString
This is fixing a regression introduced recently during the WatchModel rework. Change-Id: I128368e78d00f1ef1fc96f7319b19873099396fa Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r--src/plugins/debugger/watchhandler.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp
index 966bf8c8651..d239d40805b 100644
--- a/src/plugins/debugger/watchhandler.cpp
+++ b/src/plugins/debugger/watchhandler.cpp
@@ -1351,8 +1351,11 @@ bool WatchModel::ancestorChanged(const QSet<QByteArray> &inames, WatchItem *item
void WatchModel::insertBulkData(const QList<WatchData> &list)
{
#if 1
- for (int i = 0, n = list.size(); i != n; ++i)
- insertDataItem(list.at(i));
+ for (int i = 0, n = list.size(); i != n; ++i) {
+ const WatchData &data = list.at(i);
+ insertDataItem(data);
+ m_handler->showEditValue(data);
+ }
#else
// Destroy unneeded items.
QSet<QByteArray> inames;