diff options
author | hjk <[email protected]> | 2012-03-16 12:12:32 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2012-03-16 12:58:43 +0100 |
commit | 65b8b14b7cc62c0ee06f37853ca8c6a922a32af6 (patch) | |
tree | 79a73afb6dd47c3bb4580274f20f708495232021 /src/plugins/debugger/watchhandler.cpp | |
parent | 4334c2e361a4610602bb504d2747c19fdaa69db7 (diff) |
debugger: add missing 'type' column when copying watch contents
Change-Id: I5303814f38deba238120e57ebaad765ab089704c
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 7a3b7361c6e..139d30f7904 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1833,6 +1833,8 @@ void WatchHandler::showInEditorHelper(QString *contents, WatchItem *item, int de contents->append(item->name); contents->append(tab); contents->append(item->value); + contents->append(tab); + contents->append(item->type); contents->append(nl); foreach (WatchItem *child, item->children) showInEditorHelper(contents, child, depth + 1); |