shift-shell/containments/homescreens/halcyon/homescreen.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

23 lines
529 B
C++

// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "homescreen.h"
#include <KIO/ApplicationLauncherJob>
#include <KWindowSystem>
#include <QDebug>
#include <QQuickItem>
#include <QtQml>
HomeScreen::HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
: Plasma::Containment{parent, data, args}
{
setHasConfigurationInterface(true);
}
HomeScreen::~HomeScreen() = default;
K_PLUGIN_CLASS(HomeScreen)
#include "homescreen.moc"