File indexing completed on 2024-04-28 05:27:05

0001 // SPDX-FileCopyrightText: 2019, 2022 Mikhail Zolotukhin <zomial@protonmail.com>
0002 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0003 
0004 #pragma once
0005 
0006 #include <QVariant>
0007 
0008 namespace GSettingsEditor
0009 {
0010 void setValue(const char *paramName, const QVariant &paramValue, const char *category = "org.gnome.desktop.interface");
0011 void setValueAsEnum(const char *paramName, int paramValue, const char *category = "org.gnome.desktop.interface");
0012 }