summaryrefslogtreecommitdiffstats
path: root/framework/src/startupcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/startupcheck.h')
-rw-r--r--framework/src/startupcheck.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/framework/src/startupcheck.h b/framework/src/startupcheck.h
index dd79ee04..b8b2e3a0 100644
--- a/framework/src/startupcheck.h
+++ b/framework/src/startupcheck.h
@@ -21,12 +21,9 @@
21 21
22class StartupCheck : public QObject { 22class StartupCheck : public QObject {
23 Q_OBJECT 23 Q_OBJECT
24 Q_PROPERTY(bool noAccount READ noAccount CONSTANT);
24public: 25public:
25 StartupCheck(QObject *parent = nullptr); 26 StartupCheck(QObject *parent = nullptr);
26 27
27signals: 28 bool noAccount() const;
28 void noAccount();
29
30private Q_SLOTS:
31 void check();
32}; 29};