core: make qPref.* use static

Prepare qPref.* to run load/sync
Make variables and methods static to give easy access
Make getter inline to give faster access

Signed-off-by: Jan Iversen <jani@apache.org>:wq
This commit is contained in:
jan Iversen 2018-08-14 09:56:20 +02:00 committed by Dirk Hohndel
parent 253d868328
commit 0825f644e0
3 changed files with 13 additions and 18 deletions

View file

@ -1,7 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
#include "qPref.h"
#include "qPrefPrivate.h"
#include "ssrf-version.h"
qPref::qPref(QObject *parent) : QObject(parent)
{
@ -14,6 +13,9 @@ qPref *qPref::instance()
void qPref::loadSync(bool doSync)
{
if (!doSync)
uiLanguage(NULL);
qPrefAnimations::instance()->loadSync(doSync);
qPrefCloudStorage::instance()->loadSync(doSync);
qPrefDisplay::instance()->loadSync(doSync);
@ -30,13 +32,3 @@ void qPref::loadSync(bool doSync)
qPrefUnits::instance()->loadSync(doSync);
qPrefUpdateManager::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);
}