mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 06:33:08 +00:00
19 lines
422 B
C++
19 lines
422 B
C++
|
|
/**
|
||
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "kcm.h"
|
||
|
|
|
||
|
|
#include <KPluginFactory>
|
||
|
|
|
||
|
|
K_PLUGIN_CLASS_WITH_JSON(KCMMobileShell, "metadata.json")
|
||
|
|
|
||
|
|
KCMMobileShell::KCMMobileShell(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
||
|
|
: KQuickAddons::ManagedConfigModule(parent, data, args)
|
||
|
|
{
|
||
|
|
setButtons(0);
|
||
|
|
}
|
||
|
|
|
||
|
|
#include "kcm.moc"
|