From 19803ab3c30c3a77929de49aed19584e9de2f117 Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Thu, 5 Jul 2018 09:46:07 +0200 Subject: mobile-widgets: solve cloudstatus register problem Use Q_ENUM instad of Q_ENUMS (which is depreciated) since it does the meta registration for all Qt platforms. Q_ENUM require the enum to be defined in the class and cannot refer to a global class, therefore copied enum to class. This commit is made to get the release to work, with minimal changes, this class will be moved to qPref and the double definition solved Signed-off-by: Jan Iversen --- mobile-widgets/qmlprefs.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'mobile-widgets/qmlprefs.h') diff --git a/mobile-widgets/qmlprefs.h b/mobile-widgets/qmlprefs.h index dc8de0686..90b4c290f 100644 --- a/mobile-widgets/qmlprefs.h +++ b/mobile-widgets/qmlprefs.h @@ -8,7 +8,7 @@ class QMLPrefs : public QObject { Q_OBJECT - Q_ENUMS(cloud_status) + Q_ENUM(cloud_status) Q_PROPERTY(QString cloudPassword MEMBER m_cloudPassword WRITE setCloudPassword @@ -51,6 +51,14 @@ class QMLPrefs : public QObject { NOTIFY timeThresholdChanged) public: + enum cloud_status { + CS_UNKNOWN, + CS_INCORRECT_USER_PASSWD, + CS_NEED_TO_VERIFY, + CS_VERIFIED, + CS_NOCLOUD + }; + QMLPrefs(); ~QMLPrefs(); -- cgit v1.2.3-70-g09d2