From ee7439514f180c60760720ce655985e2333f2491 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Wed, 5 Mar 2014 12:13:20 +0100 Subject: [PATCH] QmlDesigner.Model: Add type info to VariantPropert stream operator This is useful information. Change-Id: I7757fff89e9d7a2fa07d65b47d6be829212d4d7e Reviewed-by: Marco Bubke --- src/plugins/qmldesigner/designercore/model/variantproperty.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/designercore/model/variantproperty.cpp b/src/plugins/qmldesigner/designercore/model/variantproperty.cpp index ab50777f240..de565cc2fa5 100644 --- a/src/plugins/qmldesigner/designercore/model/variantproperty.cpp +++ b/src/plugins/qmldesigner/designercore/model/variantproperty.cpp @@ -140,7 +140,7 @@ QDebug operator<<(QDebug debug, const VariantProperty &VariantProperty) } QTextStream& operator<<(QTextStream &stream, const VariantProperty &property) { - stream << "VariantProperty(" << property.name() << ',' << ' ' << property.value().toString() << ')'; + stream << "VariantProperty(" << property.name() << ',' << ' ' << property.value().toString() << ' ' << property.value().typeName() << ')'; return stream; }