diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 1337cb864f8..1b5486150c1 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1787,7 +1787,7 @@ static void showInEditorHelper(const WatchItem *item, QTextStream &ts, int depth { const QChar tab = QLatin1Char('\t'); const QChar nl = QLatin1Char('\n'); - ts << QString(depth, tab) << item->name << tab << item->value << tab + ts << QString(depth, tab) << item->name << tab << displayValue(item) << tab << item->type << nl; foreach (const TreeItem *child, item->children()) showInEditorHelper(static_cast(child), ts, depth + 1);