debugger: add missing 'type' column when copying watch contents

Change-Id: I5303814f38deba238120e57ebaad765ab089704c
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-03-16 12:12:32 +01:00
committed by hjk
parent 4334c2e361
commit 65b8b14b7c

View File

@@ -1833,6 +1833,8 @@ void WatchHandler::showInEditorHelper(QString *contents, WatchItem *item, int de
contents->append(item->name); contents->append(item->name);
contents->append(tab); contents->append(tab);
contents->append(item->value); contents->append(item->value);
contents->append(tab);
contents->append(item->type);
contents->append(nl); contents->append(nl);
foreach (WatchItem *child, item->children) foreach (WatchItem *child, item->children)
showInEditorHelper(contents, child, depth + 1); showInEditorHelper(contents, child, depth + 1);