From 5fee28537b5f2ed6f1ca1558545597b66ec22270 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Fri, 5 Nov 2021 15:00:24 +0100 Subject: Clean up PropertyCache life cycle We generally want to use QQmlRefPointer for it, rather than manually calling addref() and release() all over the place. Also, we can completely inline its ctor and drop an unused member. Also, do not keep property caches of dynamic meta objects in type registry. The dynamic metaobjects will change, and the outdated property caches will eventually be retrieved. Change-Id: I8042c85b32f3031b554f97a35c1545a3412d2acb Reviewed-by: Andrei Golubev --- src/qml/qml/qqmlpropertyvalidator_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qml/qml/qqmlpropertyvalidator_p.h') diff --git a/src/qml/qml/qqmlpropertyvalidator_p.h b/src/qml/qml/qqmlpropertyvalidator_p.h index 0b830dd107..554a7faff3 100644 --- a/src/qml/qml/qqmlpropertyvalidator_p.h +++ b/src/qml/qml/qqmlpropertyvalidator_p.h @@ -73,7 +73,7 @@ private: int objectIndex, const QV4::CompiledData::Binding *instantiatingBinding, bool populatingValueTypeGroupProperty = false) const; QQmlError validateLiteralBinding( - QQmlPropertyCache *propertyCache, QQmlPropertyData *property, + const QQmlRefPointer &propertyCache, QQmlPropertyData *property, const QV4::CompiledData::Binding *binding) const; QQmlError validateObjectBinding( QQmlPropertyData *property, const QString &propertyName, -- cgit v1.2.3