aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickpointdirection_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/qquickpointdirection_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/qquickpointdirection_p.h')
-rw-r--r--src/particles/qquickpointdirection_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/particles/qquickpointdirection_p.h b/src/particles/qquickpointdirection_p.h
index 3c892177df..48863a1343 100644
--- a/src/particles/qquickpointdirection_p.h
+++ b/src/particles/qquickpointdirection_p.h
@@ -21,10 +21,10 @@ QT_BEGIN_NAMESPACE
class Q_QUICKPARTICLES_EXPORT QQuickPointDirection : public QQuickDirection
{
Q_OBJECT
- Q_PROPERTY(qreal x READ x WRITE setX NOTIFY xChanged FINAL)
- Q_PROPERTY(qreal y READ y WRITE setY NOTIFY yChanged FINAL)
- Q_PROPERTY(qreal xVariation READ xVariation WRITE setXVariation NOTIFY xVariationChanged FINAL)
- Q_PROPERTY(qreal yVariation READ yVariation WRITE setYVariation NOTIFY yVariationChanged FINAL)
+ Q_PROPERTY(qreal x READ x WRITE setX NOTIFY xChanged)
+ Q_PROPERTY(qreal y READ y WRITE setY NOTIFY yChanged)
+ Q_PROPERTY(qreal xVariation READ xVariation WRITE setXVariation NOTIFY xVariationChanged)
+ Q_PROPERTY(qreal yVariation READ yVariation WRITE setYVariation NOTIFY yVariationChanged)
QML_NAMED_ELEMENT(PointDirection)
QML_ADDED_IN_VERSION(2, 0)
public: