2022-02-13 04:23:57 +00:00
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "kcm.h"
|
|
|
|
|
|
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
2022-07-19 12:30:17 +00:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(KCMMobileShell, "kcm_mobileshell.json")
|
2022-02-13 04:23:57 +00:00
|
|
|
|
|
|
|
|
KCMMobileShell::KCMMobileShell(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
2023-03-18 17:53:52 +00:00
|
|
|
: KQuickManagedConfigModule(parent, data, args)
|
2022-02-13 04:23:57 +00:00
|
|
|
{
|
2022-04-24 11:44:41 +00:00
|
|
|
setButtons({});
|
2022-02-13 04:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "kcm.moc"
|