diff options
Diffstat (limited to 'framework/src/accounts/accountfactory.h')
-rw-r--r-- | framework/src/accounts/accountfactory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/src/accounts/accountfactory.h b/framework/src/accounts/accountfactory.h index 21747df5..f49d475c 100644 --- a/framework/src/accounts/accountfactory.h +++ b/framework/src/accounts/accountfactory.h | |||
@@ -34,6 +34,7 @@ class AccountFactory : public QObject | |||
34 | Q_PROPERTY(QString icon MEMBER mIcon NOTIFY accountLoaded); | 34 | Q_PROPERTY(QString icon MEMBER mIcon NOTIFY accountLoaded); |
35 | Q_PROPERTY(QString uiPath MEMBER mUiPath NOTIFY accountLoaded); | 35 | Q_PROPERTY(QString uiPath MEMBER mUiPath NOTIFY accountLoaded); |
36 | Q_PROPERTY(QString loginUi MEMBER mLoginUi NOTIFY accountLoaded); | 36 | Q_PROPERTY(QString loginUi MEMBER mLoginUi NOTIFY accountLoaded); |
37 | Q_PROPERTY(bool requiresKeyring MEMBER mRequiresKeyring NOTIFY accountLoaded); | ||
37 | public: | 38 | public: |
38 | explicit AccountFactory(QObject *parent = Q_NULLPTR); | 39 | explicit AccountFactory(QObject *parent = Q_NULLPTR); |
39 | 40 | ||
@@ -52,4 +53,5 @@ private: | |||
52 | QString mUiPath; | 53 | QString mUiPath; |
53 | QString mLoginUi; | 54 | QString mLoginUi; |
54 | QByteArray mAccountType; | 55 | QByteArray mAccountType; |
56 | bool mRequiresKeyring = true; | ||
55 | }; | 57 | }; |