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


qPref *qPref::m_instance = NULL;
qPref *qPref::instance()
{
	if (!m_instance)
		m_instance = new qPref;
	return m_instance;
}



void qPref::loadSync(bool doSync)
{
}