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>
This commit is contained in:
jan Iversen 2018-09-12 13:40:59 +02:00 committed by Dirk Hohndel
parent 504e912512
commit 51bc41b517
5 changed files with 3 additions and 34 deletions

View file

@ -293,11 +293,10 @@ Kirigami.ScrollablePage {
Controls.TextField {
id: timeThreshold
text: prefs.timeThreshold
text: PrefLocationService.time_threshold / 60
Layout.preferredWidth: gridWidth * 0.25
onEditingFinished: {
prefs.timeThreshold = timeThreshold.text
manager.savePreferences()
PrefLocationService.time_threshold = timeThreshold.text * 60
}
}