shift-shell/kcms/mobileshell/kcm.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
422 B
C++
Raw Normal View History

/**
* 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)
2023-03-18 17:53:52 +00:00
: KQuickManagedConfigModule(parent, data, args)
{
2022-04-24 11:44:41 +00:00
setButtons({});
}
#include "kcm.moc"