mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
4cff23ef7a
These are not used anymore. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
39 lines
1 KiB
C++
39 lines
1 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "qPrefGeneral.h"
|
|
#include "qPrefPrivate.h"
|
|
|
|
static const QString group = QStringLiteral("GeneralSettings");
|
|
|
|
QString qPrefGeneral::st_diveshareExport_uid;
|
|
static const QString st_diveshareExport_uid_default;
|
|
|
|
bool qPrefGeneral::st_diveshareExport_private;
|
|
static const bool st_diveshareExport_private_default = false;
|
|
|
|
qPrefGeneral *qPrefGeneral::instance()
|
|
{
|
|
static qPrefGeneral *self = new qPrefGeneral;
|
|
return self;
|
|
}
|
|
|
|
void qPrefGeneral::loadSync(bool doSync)
|
|
{
|
|
disk_defaultsetpoint(doSync);
|
|
disk_o2consumption(doSync);
|
|
disk_pscr_ratio(doSync);
|
|
|
|
if (!doSync) {
|
|
load_diveshareExport_uid();
|
|
load_diveshareExport_private();
|
|
}
|
|
}
|
|
|
|
HANDLE_PREFERENCE_INT(General, "defaultsetpoint", defaultsetpoint);
|
|
|
|
HANDLE_PREFERENCE_INT(General, "o2consumption", o2consumption);
|
|
|
|
HANDLE_PREFERENCE_INT(General, "pscr_ratio", pscr_ratio);
|
|
|
|
HANDLE_PROP_QSTRING(General, "diveshareExport/uid", diveshareExport_uid);
|
|
|
|
HANDLE_PROP_BOOL(General, "diveshareExport/private", diveshareExport_private);
|