From 65b8b14b7cc62c0ee06f37853ca8c6a922a32af6 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Fri, 16 Mar 2012 12:12:32 +0100
Subject: [PATCH] debugger: add missing 'type' column when copying watch
 contents

Change-Id: I5303814f38deba238120e57ebaad765ab089704c
Reviewed-by: hjk <qthjk@ovi.com>
---
 src/plugins/debugger/watchhandler.cpp | 2 ++
 1 file changed, 2 insertions(+)

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);
-- 
GitLab