aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmljavascriptexpression.cpp
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/qqmljavascriptexpression.cpp
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/qqmljavascriptexpression.cpp')
-rw-r--r--src/qml/qml/qqmljavascriptexpression.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmljavascriptexpression.cpp b/src/qml/qml/qqmljavascriptexpression.cpp
index 854a22d8ba..732ab0e9f3 100644
--- a/src/qml/qml/qqmljavascriptexpression.cpp
+++ b/src/qml/qml/qqmljavascriptexpression.cpp
@@ -349,7 +349,7 @@ void QQmlPropertyCapture::captureProperty(QObject *o, int c, int n, bool doNotif
if (c >= 0) {
const QQmlData *ddata = QQmlData::get(o, /*create=*/false);
const QMetaObject *metaObjectForBindable = nullptr;
- if (auto const propCache = ddata ? ddata->propertyCache : nullptr; propCache) {
+ if (auto const propCache = (ddata ? ddata->propertyCache.data() : nullptr)) {
Q_ASSERT(propCache->property(c));
if (propCache->property(c)->isBindable())
metaObjectForBindable = propCache->metaObject();