Skip to content
Snippets Groups Projects
Commit 65b8b14b authored by hjk's avatar hjk Committed by hjk
Browse files

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


Change-Id: I5303814f38deba238120e57ebaad765ab089704c
Reviewed-by: default avatarhjk <qthjk@ovi.com>
parent 4334c2e3
No related branches found
No related tags found
No related merge requests found
...@@ -1833,6 +1833,8 @@ void WatchHandler::showInEditorHelper(QString *contents, WatchItem *item, int de ...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment