Skip to content

Commit 9abea00

Browse files
committed
refactor: qsint fix clazy property without notify
1 parent 8925ccc commit 9abea00

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/Gui/QSint/actionpanel/actiongroup.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,15 @@ class QSINT_EXPORT ActionGroup : public QWidget
3030
{
3131
Q_OBJECT
3232

33-
Q_PROPERTY(bool expandable READ isExpandable WRITE setExpandable)
34-
Q_PROPERTY(bool header READ hasHeader WRITE setHeader)
35-
Q_PROPERTY(QString headerText READ headerText WRITE setHeaderText)
33+
Q_PROPERTY(bool expandable READ isExpandable WRITE setExpandable NOTIFY expandableChanged)
34+
Q_PROPERTY(bool header READ hasHeader WRITE setHeader NOTIFY headerChanged)
35+
Q_PROPERTY(QString headerText READ headerText WRITE setHeaderText NOTIFY headerTextChanged)
36+
37+
Q_SIGNALS:
38+
void expandableChanged();
39+
void headerChanged();
40+
void headerTextChanged();
41+
3642

3743
public:
3844
/**

0 commit comments

Comments
 (0)