Fix warning about non-NOTIFYable property

This commit is contained in:
Loren Burkholder 2021-01-29 17:34:56 -05:00
parent cd998d1c35
commit d8ebc0b3dc
1 changed files with 4 additions and 4 deletions

View File

@ -61,10 +61,10 @@ class MainWindow : public QMainWindow
{
Q_OBJECT
Q_PROPERTY(int x READ x)
Q_PROPERTY(int y READ y)
Q_PROPERTY(int width READ width)
Q_PROPERTY(int height READ height)
Q_PROPERTY(int x READ x CONSTANT)
Q_PROPERTY(int y READ y CONSTANT)
Q_PROPERTY(int width READ width CONSTANT)
Q_PROPERTY(int height READ height CONSTANT)
public:
explicit MainWindow(QWidget *parent = nullptr);