shift-shell/containments/panel/phonepanel.cpp
Nicolas Fella 9d16564ed6 Remove metadata from applet C++ plugin
It's not needed and causes a warning about defining an explicit Id
2023-09-14 00:18:45 +02:00

19 lines
446 B
C++

/*
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
* SPDX-FileCopyrightText: 2018 Bhushan Shah <bshah@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "phonepanel.h"
PhonePanel::PhonePanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
: Plasma::Containment(parent, data, args)
{
}
PhonePanel::~PhonePanel() = default;
K_PLUGIN_CLASS(PhonePanel)
#include "phonepanel.moc"