aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickbuttongroup_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2017-11-08 10:25:07 +0100
committerJ-P Nurmi <jpnurmi@qt.io>2017-11-08 10:14:07 +0000
commit2b07c320844f3f69a44f3a772e7f9163eff1633b (patch)
tree32cf874984120056b1db7754d59c07e2a14328cf /src/quicktemplates2/qquickbuttongroup_p.h
parent03155ec2e2fd6cc60b4293af19964d2e1a65b7d9 (diff)
Add comments for revision 4 members
The same was done for earlier revisions in 5.9 in commit 430fe83 and 5.10 commit 8a56c33. Change-Id: Ib3c0158ea1c8409ec12f37e3738fbb38ae52edb6 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/quicktemplates2/qquickbuttongroup_p.h')
-rw-r--r--src/quicktemplates2/qquickbuttongroup_p.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/quicktemplates2/qquickbuttongroup_p.h b/src/quicktemplates2/qquickbuttongroup_p.h
index 30a09a62..84ddd225 100644
--- a/src/quicktemplates2/qquickbuttongroup_p.h
+++ b/src/quicktemplates2/qquickbuttongroup_p.h
@@ -67,6 +67,7 @@ class Q_QUICKTEMPLATES2_PRIVATE_EXPORT QQuickButtonGroup : public QObject, publi
Q_PROPERTY(QQmlListProperty<QQuickAbstractButton> buttons READ buttons NOTIFY buttonsChanged FINAL)
// 2.3 (Qt 5.10)
Q_PROPERTY(bool exclusive READ isExclusive WRITE setExclusive NOTIFY exclusiveChanged FINAL REVISION 3)
+ // 2.4 (Qt 5.11)
Q_PROPERTY(Qt::CheckState checkState READ checkState WRITE setCheckState NOTIFY checkStateChanged FINAL REVISION 4)
Q_INTERFACES(QQmlParserStatus)
@@ -84,6 +85,7 @@ public:
bool isExclusive() const;
void setExclusive(bool exclusive);
+ // 2.4 (Qt 5.11)
Qt::CheckState checkState() const;
void setCheckState(Qt::CheckState state);
@@ -98,6 +100,7 @@ Q_SIGNALS:
Q_REVISION(1) void clicked(QQuickAbstractButton *button);
// 2.3 (Qt 5.10)
Q_REVISION(3) void exclusiveChanged();
+ // 2.4 (Qt 5.11)
Q_REVISION(4) void checkStateChanged();
protected: