summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-01-29 17:34:56 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2021-01-29 18:16:55 -0500
commitd8ebc0b3dcdc988cb8c5ee495072272a1bdb28ca (patch)
treedb9b73e9d5e1aff7afa4fde3f8a5c398e25f1ac0 /src
parentCenter user info dialog on the screen (diff)
downloadnheko-d8ebc0b3dcdc988cb8c5ee495072272a1bdb28ca.tar.xz
Fix warning about non-NOTIFYable property
Diffstat (limited to 'src')
-rw-r--r--src/MainWindow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/MainWindow.h b/src/MainWindow.h

index 707118ed..4c365dca 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h
@@ -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);