summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeproperty.cpp
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2012-02-01 10:02:03 +1000
committerAndrew den Exter <andrew.den-exter@nokia.com>2012-02-01 04:52:58 +0100
commit5e970b84663f5398eb51d4575856d1a3c44df953 (patch)
treecd70778d3eb518689aba31fadd3d8bcf92d74d08 /src/declarative/qml/qdeclarativeproperty.cpp
parentf973bb1730e1138f9c745d142c1f2f5d9c53b456 (diff)
Fix assert when binding to property variant.
Remove workarounds for the QVariant meta-type and use it directly and remove QMetaObjectBuilder entirely and use the up to date copy in qtbase. Change-Id: I1ad601906d6b172adc7ce7bb63af28cd578eb5d7 Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>
Diffstat (limited to 'src/declarative/qml/qdeclarativeproperty.cpp')
-rw-r--r--src/declarative/qml/qdeclarativeproperty.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/declarative/qml/qdeclarativeproperty.cpp b/src/declarative/qml/qdeclarativeproperty.cpp
index 05bec635..ca528a38 100644
--- a/src/declarative/qml/qdeclarativeproperty.cpp
+++ b/src/declarative/qml/qdeclarativeproperty.cpp
@@ -444,10 +444,7 @@ int QDeclarativePropertyPrivate::propertyType() const
if (isValueType()) {
return valueType.valueTypePropType;
} else if (type & QDeclarativeProperty::Property) {
- if (core.propType == (int)QVariant::LastType)
- return qMetaTypeId<QVariant>();
- else
- return core.propType;
+ return core.propType;
} else {
return QVariant::Invalid;
}