diff options
author | hjk <[email protected]> | 2012-09-04 15:02:00 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2012-09-07 15:02:00 +0200 |
commit | 00f7677fc4bf169c6ff98f7e2c850edc2292a8c5 (patch) | |
tree | 2739238f74f0642f33f528583c96339f741921a2 /src/plugins/debugger/watchhandler.cpp | |
parent | 0e9568da3ff5a1e2e5f3896a882d93f019dbdf16 (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.cpp | 7 |
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; |