diff options
Diffstat (limited to 'mobile-widgets/qmlprefs.h')
-rw-r--r-- | mobile-widgets/qmlprefs.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mobile-widgets/qmlprefs.h b/mobile-widgets/qmlprefs.h index 4127d9b79..f1d6dea50 100644 --- a/mobile-widgets/qmlprefs.h +++ b/mobile-widgets/qmlprefs.h @@ -37,11 +37,6 @@ class QMLPrefs : public QObject { READ theme WRITE setTheme NOTIFY themeChanged) - Q_PROPERTY(int timeThreshold - MEMBER m_timeThreshold - WRITE setTimeThreshold - NOTIFY timeThresholdChanged) - public: QMLPrefs(); ~QMLPrefs(); @@ -66,9 +61,6 @@ public: bool showPin() const; void setShowPin(bool enable); - int timeThreshold() const; - void setTimeThreshold(int time); - const QString theme() const; void setTheme(QString theme); @@ -84,7 +76,6 @@ private: static QMLPrefs *m_instance; qPrefCloudStorage::cloud_status m_oldStatus; bool m_showPin; - int m_timeThreshold; signals: void cloudPasswordChanged(); @@ -94,7 +85,6 @@ signals: void oldStatusChanged(); void showPinChanged(); void themeChanged(); - void timeThresholdChanged(); }; #endif |