mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
6212bb6721
This commit does some final cleaning up to the code, mostly deleting white space and comments. Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
45 lines
1.2 KiB
C++
45 lines
1.2 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);
|
|
disk_filterFullTextNotes(doSync);
|
|
disk_filterCaseSensitive(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);
|
|
|
|
HANDLE_PREFERENCE_BOOL(General, "filterFullTextNotes", filterFullTextNotes);
|
|
|
|
HANDLE_PREFERENCE_BOOL(General, "filterCaseSensitive", filterCaseSensitive);
|