summaryrefslogtreecommitdiffstats
path: root/core/settings/qPrefLocationService.cpp
blob: 786cf58ebf995e775e9d775d8afed988485360d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-2.0
#include "qPrefLocationService.h"
#include "qPrefPrivate.h"

static const QString group = QStringLiteral("LocationService");

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);