// SPDX-License-Identifier: GPL-2.0
#include "qPrefPrivate.h"

#include <QSettings>

void qPrefPrivate::copy_txt(const char **name, const QString &string)
{
	free((void *)*name);
	*name = copy_qstring(string);
}

void qPrefPrivate::propSetValue(const QString &key, const QVariant &value)
{
	// REMARK: making s static (which would be logical) does NOT work
	// because it gets initialized too early.
	// Having it as a local variable is light weight, because it is an
	// interface class.
	QSettings s;
	s.setValue(key, value);
}

QVariant qPrefPrivate::propValue(const QString &key, const QVariant &defaultValue)
{
	// REMARK: making s static (which would be logical) does NOT work
	// because it gets initialized too early.
	// Having it as a local variable is light weight, because it is an
	// interface class.
	QSettings s;
	return  s.value(key, defaultValue);
}