aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2024-02-12 12:03:12 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2024-02-16 13:41:27 +0100
commitd1b201d8a97ffaa67ddd62c728a0b410cf07fb61 (patch)
tree0ea51e1db1ea5ad6e898eabf0a81d331fad8c9ce /src/quicktemplates
parent198a90f56255bf9e5cf4416b973682cdc708d77b (diff)
Partially revert "Make properties in Qt Quick Controls FINAL"
Making properties FINAL is an API break not covered by any QUIP rule. However, this does not apply to anonymous types and Singleton types whose properties were marked FINAL in the referenced commit, as it is not possible to derive from them anyway. This partially reverts 2eee3f5b690b7449d714a3590a3ce15bd061e3cf Pick-to: 6.7 6.6 Change-Id: If993d4c560a09e6de53d353d839f3efff24adbf7 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/quicktemplates')
-rw-r--r--src/quicktemplates/qquicksplitview_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quicktemplates/qquicksplitview_p.h b/src/quicktemplates/qquicksplitview_p.h
index 7ba6dc3573..0828142a4e 100644
--- a/src/quicktemplates/qquicksplitview_p.h
+++ b/src/quicktemplates/qquicksplitview_p.h
@@ -32,7 +32,7 @@ class Q_QUICKTEMPLATES2_EXPORT QQuickSplitView : public QQuickContainer
{
Q_OBJECT
Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation NOTIFY orientationChanged FINAL)
- Q_PROPERTY(bool resizing READ isResizing NOTIFY resizingChanged FINAL)
+ Q_PROPERTY(bool resizing READ isResizing NOTIFY resizingChanged)
Q_PROPERTY(QQmlComponent *handle READ handle WRITE setHandle NOTIFY handleChanged FINAL)
QML_NAMED_ELEMENT(SplitView)
QML_ATTACHED(QQuickSplitViewAttached)