2021-03-01 20:03:25 +00:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
|
|
|
|
|
* SPDX-FileCopyrightText: 2018 Bhushan Shah <bshah@kde.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
*/
|
2017-09-14 19:03:56 +00:00
|
|
|
|
|
|
|
|
#include "phonepanel.h"
|
|
|
|
|
|
2022-04-24 11:44:41 +00:00
|
|
|
PhonePanel::PhonePanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
|
|
|
|
: Plasma::Containment(parent, data, args)
|
2017-09-14 19:03:56 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-20 00:08:59 +00:00
|
|
|
PhonePanel::~PhonePanel() = default;
|
2023-03-06 12:19:05 +00:00
|
|
|
|
2023-09-13 22:18:45 +00:00
|
|
|
K_PLUGIN_CLASS(PhonePanel)
|
2023-03-06 12:19:05 +00:00
|
|
|
|
|
|
|
|
#include "phonepanel.moc"
|