aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/watchhandler.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2012-03-16 12:12:32 +0100
committerhjk <[email protected]>2012-03-16 12:58:43 +0100
commit65b8b14b7cc62c0ee06f37853ca8c6a922a32af6 (patch)
tree79a73afb6dd47c3bb4580274f20f708495232021 /src/plugins/debugger/watchhandler.cpp
parent4334c2e361a4610602bb504d2747c19fdaa69db7 (diff)
debugger: add missing 'type' column when copying watch contents
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r--src/plugins/debugger/watchhandler.cpp2
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);