mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
- Convert the metadata.desktop file to a json file (https://phabricator.kde.org/T14983) - Use kcmutils_generate_desktop_file to install the kcm as a NoDisplay-application (https://phabricator.kde.org/T15609) - Use the new install namespaces that were created for https://phabricator.kde.org/T14517
18 lines
430 B
C++
18 lines
430 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, "kcm_mobileshell.json")
|
|
|
|
KCMMobileShell::KCMMobileShell(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
|
: KQuickAddons::ManagedConfigModule(parent, data, args)
|
|
{
|
|
setButtons({});
|
|
}
|
|
|
|
#include "kcm.moc"
|