QQmlEngineDebugService: Property Data of type QVariant
[profile/ivi/qtdeclarative.git] / src / qml / debugger / qqmlenginedebugservice.cpp
index 764ba6b..b824bc0 100644 (file)
@@ -163,6 +163,8 @@ QQmlEngineDebugService::propertyData(QObject *obj, int propIdx)
         rv.type = QQmlObjectProperty::Object;
     } else if (QQmlMetaType::isList(prop.userType())) {
         rv.type = QQmlObjectProperty::List;
+    } else if (prop.userType() == QMetaType::QVariant) {
+        rv.type = QQmlObjectProperty::Variant;
     }
 
     QVariant value;