mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
f2c302284b
replace qPref.h with qPrefFoo.h to limit header includes Signed-off-by: Jan Iversen <jani@apache.org>
24 lines
658 B
C++
24 lines
658 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "qPrefLocationService.h"
|
|
#include "qPrefPrivate.h"
|
|
|
|
static const QString group = QStringLiteral("LocationService");
|
|
|
|
qPrefLocationService::qPrefLocationService(QObject *parent) : QObject(parent)
|
|
{
|
|
}
|
|
qPrefLocationService *qPrefLocationService::instance()
|
|
{
|
|
static qPrefLocationService *self = new qPrefLocationService;
|
|
return self;
|
|
}
|
|
|
|
void qPrefLocationService::loadSync(bool doSync)
|
|
{
|
|
disk_distance_threshold(doSync);
|
|
disk_time_threshold(doSync);
|
|
}
|
|
|
|
HANDLE_PREFERENCE_INT(LocationService, "/distance_threshold", distance_threshold);
|
|
|
|
HANDLE_PREFERENCE_INT(LocationService, "/time_threshold", time_threshold);
|