summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@apache.org>2018-09-12 13:40:59 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-09-12 20:18:32 -0700
commit51bc41b5179ff12bf2767cd568dbf8266b72ca7e (patch)
tree1243626fa9ec7a1b7046625e3f24f837441785d6 /mobile-widgets/qmlmanager.cpp
parent504e9125126cb24467ee8e038a461d731672c4b9 (diff)
downloadsubsurface-51bc41b5179ff12bf2767cd568dbf8266b72ca7e.tar.gz
mobile-widgets: remove setTimeThreshold from system
Use qPrefLocationService::set_time_threshold and remove from qmlprefs.cpp and qmlmanager.cpp Remark: mobile UI shows time in minutes, while it is stored (and calculated) in seconds. Therefore a /60 when reading and *60 when setting. Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 36108d848..c2b993b0c 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -406,7 +406,6 @@ void QMLManager::finishSetup()
appendTextToLog(tr("no cloud credentials"));
setStartPageText(RED_FONT + tr("Please enter valid cloud credentials.") + END_FONT);
}
- QMLPrefs::instance()->setTimeThreshold(qPrefLocationService::time_threshold() / 60);
}
QMLManager::~QMLManager()
@@ -423,11 +422,6 @@ QMLManager *QMLManager::instance()
return m_instance;
}
-void QMLManager::savePreferences()
-{
- qPrefLocationService::set_time_threshold(QMLPrefs::instance()->timeThreshold() * 60);
-}
-
#define CLOUDURL QString(prefs.cloud_base_url)
#define CLOUDREDIRECTURL CLOUDURL + "/cgi-bin/redirect.pl"