summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorAxel Spoerl <axel.spoerl@qt.io>2023-12-06 16:32:03 +0100
committerAxel Spoerl <axel.spoerl@qt.io>2024-03-08 05:23:31 +0000
commit6901ad665daba4dfdaf06fee1be332fc8a018efd (patch)
treeb326968d541eb067330c0b45aeffaf744460e915 /src/widgets
parentd130886997575ee1ffc20bfcfb6344526ca28533 (diff)
QDockWidget: add notification signal to floating property
The toplevelChanged signal notifies about changes of the floating property. Add it in property declaration. Change-Id: I06be59a24e2732030be26d87ce38f6ce58bdebbc Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/widgets/qdockwidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/widgets/qdockwidget.h b/src/widgets/widgets/qdockwidget.h
index 82538ff1b6..2efa1d3c2f 100644
--- a/src/widgets/widgets/qdockwidget.h
+++ b/src/widgets/widgets/qdockwidget.h
@@ -20,7 +20,7 @@ class Q_WIDGETS_EXPORT QDockWidget : public QWidget
{
Q_OBJECT
- Q_PROPERTY(bool floating READ isFloating WRITE setFloating)
+ Q_PROPERTY(bool floating READ isFloating WRITE setFloating NOTIFY topLevelChanged)
Q_PROPERTY(DockWidgetFeatures features READ features WRITE setFeatures NOTIFY featuresChanged)
Q_PROPERTY(Qt::DockWidgetAreas allowedAreas READ allowedAreas
WRITE setAllowedAreas NOTIFY allowedAreasChanged)