mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
affdc9d394
remove Units from SettingsObjectWrapper and reference qPrefUnits update files using SettingsObjectWrapper/Units to use qPrefUnits this activated qPrefUnits and removed the similar class from SettingsObjectWrapper. Signed-off-by: Jan Iversen <jani@apache.org>
34 lines
774 B
C++
34 lines
774 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "qPref.h"
|
|
#include "qPrefPrivate.h"
|
|
#include "ssrf-version.h"
|
|
|
|
qPref::qPref(QObject *parent) : QObject(parent)
|
|
{
|
|
}
|
|
qPref *qPref::instance()
|
|
{
|
|
static qPref *self = new qPref;
|
|
return self;
|
|
}
|
|
|
|
void qPref::loadSync(bool doSync)
|
|
{
|
|
qPrefAnimations::instance()->loadSync(doSync);
|
|
qPrefCloudStorage::instance()->loadSync(doSync);
|
|
qPrefDisplay::instance()->loadSync(doSync);
|
|
qPrefDiveComputer::instance()->loadSync(doSync);
|
|
// qPrefFaceook does not use disk.
|
|
qPrefProxy::instance()->loadSync(doSync);
|
|
qPrefUnits::instance()->loadSync(doSync);
|
|
}
|
|
|
|
const QString qPref::canonical_version() const
|
|
{
|
|
return QString(CANONICAL_VERSION_STRING);
|
|
}
|
|
|
|
const QString qPref::mobile_version() const
|
|
{
|
|
return QString(MOBILE_VERSION_STRING);
|
|
}
|