shift-shell/kcms/mobileshell/kcm.h
Alexander Lohnau 0989b762f1 Remove unneeded QVariantList from KCM constructor args
The args are not needed and will be removed later in KF6
2023-06-10 10:50:37 +02:00

24 lines
459 B
C++

/**
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <KConfigGroup>
#include <KQuickManagedConfigModule>
#include <KSharedConfig>
class KCMMobileShell : public KQuickManagedConfigModule
{
Q_OBJECT
public:
KCMMobileShell(QObject *parent, const KPluginMetaData &data);
Q_SIGNALS:
void navigationPanelEnabledChanged();
private:
KSharedConfig::Ptr m_config;
};