aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertycache_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlpropertycache_p.h')
-rw-r--r--src/qml/qml/qqmlpropertycache_p.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlpropertycache_p.h b/src/qml/qml/qqmlpropertycache_p.h
index 058fea7366..0f44533ef7 100644
--- a/src/qml/qml/qqmlpropertycache_p.h
+++ b/src/qml/qml/qqmlpropertycache_p.h
@@ -105,7 +105,7 @@ private:
Shared = 1
};
- struct SharedHolder : public QQmlRefCount
+ struct SharedHolder : public QQmlRefCounted<SharedHolder>
{
Q_DISABLE_COPY_MOVE(SharedHolder)
SharedHolder(QMetaObject *shared) : metaObject(shared) {}
@@ -116,7 +116,8 @@ private:
mutable QBasicAtomicInteger<quintptr> d = 0;
};
-class Q_QML_PRIVATE_EXPORT QQmlPropertyCache : public QQmlRefCount
+class Q_QML_PRIVATE_EXPORT QQmlPropertyCache
+ : public QQmlRefCounted<QQmlPropertyCache>
{
public:
using Ptr = QQmlRefPointer<QQmlPropertyCache>;