aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmltype_p_p.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-11-05 15:00:24 +0100
committerUlf Hermann <ulf.hermann@qt.io>2021-11-09 00:03:09 +0100
commit5fee28537b5f2ed6f1ca1558545597b66ec22270 (patch)
treefe3580bd5ca31c45d4ffc927bcb50b165d706d48 /src/qml/qml/qqmltype_p_p.h
parent13a0da5bd2cf59aeb343fe9345b9bac2cfbb5e6f (diff)
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 <andrei.golubev@qt.io>
Diffstat (limited to 'src/qml/qml/qqmltype_p_p.h')
-rw-r--r--src/qml/qml/qqmltype_p_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmltype_p_p.h b/src/qml/qml/qqmltype_p_p.h
index 8b45df9887..ef924ca7a0 100644
--- a/src/qml/qml/qqmltype_p_p.h
+++ b/src/qml/qml/qqmltype_p_p.h
@@ -71,7 +71,7 @@ public:
void init() const;
void initEnums(QQmlEnginePrivate *engine) const;
void insertEnums(const QMetaObject *metaObject) const;
- void insertEnumsFromPropertyCache(const QQmlPropertyCache *cache) const;
+ void insertEnumsFromPropertyCache(const QQmlRefPointer<QQmlPropertyCache> &cache) const;
void setContainingType(QQmlType *containingType);
QUrl sourceUrl() const
@@ -106,7 +106,7 @@ public:
}
QQmlType resolveCompositeBaseType(QQmlEnginePrivate *engine) const;
- QQmlPropertyCache *compositePropertyCache(QQmlEnginePrivate *engine) const;
+ QQmlRefPointer<QQmlPropertyCache> compositePropertyCache(QQmlEnginePrivate *engine) const;
QQmlType::RegistrationType regType;