aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickparticlepainter_p.h
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2024-02-12 12:41:41 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2024-02-16 13:42:13 +0100
commit31a60b518bd7d811172b887501e831e6e4e4a9c1 (patch)
treec1c7c70cf02ac655c633ef3e3cae6cf4711064c4 /src/particles/qquickparticlepainter_p.h
parent9558b7b093b6586e68f11afa6b2642070e57abce (diff)
Mostly revert "Make properties in the particles module FINAL"
Making properties FINAL is an API break not covered by any QUIP rule. However, this does not apply to the attached type whose properties were marked FINAL in the referenced commit, as it is not possible to derive from it anyway. This reverts the majority of commit cb82b9f2addf25db34970ebb48f69291901ad7ba. Pick-to: 6.6 6.7 Change-Id: Ib001417f0b4236f1c8e068ec5f238a4b9731f8cc Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/particles/qquickparticlepainter_p.h')
-rw-r--r--src/particles/qquickparticlepainter_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/particles/qquickparticlepainter_p.h b/src/particles/qquickparticlepainter_p.h
index 4f74f40251..577d64b053 100644
--- a/src/particles/qquickparticlepainter_p.h
+++ b/src/particles/qquickparticlepainter_p.h
@@ -25,8 +25,8 @@ QT_BEGIN_NAMESPACE
class Q_QUICKPARTICLES_EXPORT QQuickParticlePainter : public QQuickItem
{
Q_OBJECT
- Q_PROPERTY(QQuickParticleSystem* system READ system WRITE setSystem NOTIFY systemChanged FINAL)
- Q_PROPERTY(QStringList groups READ groups WRITE setGroups NOTIFY groupsChanged FINAL)
+ Q_PROPERTY(QQuickParticleSystem* system READ system WRITE setSystem NOTIFY systemChanged)
+ Q_PROPERTY(QStringList groups READ groups WRITE setGroups NOTIFY groupsChanged)
QML_NAMED_ELEMENT(ParticlePainter)
QML_ADDED_IN_VERSION(2, 0)