Hi,

I have a Q_PROPERTY like so:

Qt Code:
  1. Q_PROPERTY(QString name READ name WRITE setName)
To copy to clipboard, switch view to plain text mode 

clazy warns that

a non-CONSTANT Q_PROPERTY is missing a NOTIFY signal.
https://github.com/KDE/clazy/blob/1....hout-notify.md


Why is that? In my case it cant be CONSTANT because it has a WRITE setter. But it cant be NOTIFY either because there is no signal fired when it is set.
I am rarely using Q_PROPERTY, so my best guess is it's not the right tool for the case I am describing. If so, why not?


Qt doc (https://doc.qt.io/qt-6/properties.html) also has some examples that look just like mine.