mirror of
https://invent.kde.org/plasma/layer-shell-qt.git
synced 2025-07-15 11:34:25 -04:00
Address code formatting
This commit is contained in:
@ -5,27 +5,26 @@
|
||||
* SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandshellintegrationplugin_p.h>
|
||||
#include "qwaylandlayershellintegration_p.h"
|
||||
#include <QtWaylandClient/private/qwaylandshellintegrationplugin_p.h>
|
||||
|
||||
using namespace LayerShellQt;
|
||||
|
||||
class QWaylandLayerShellIntegrationPlugin :
|
||||
public QtWaylandClient::QWaylandShellIntegrationPlugin
|
||||
class QWaylandLayerShellIntegrationPlugin : public QtWaylandClient::QWaylandShellIntegrationPlugin
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PLUGIN_METADATA(
|
||||
IID QWaylandShellIntegrationFactoryInterface_iid
|
||||
FILE "layer-shell.json")
|
||||
Q_OBJECT
|
||||
Q_PLUGIN_METADATA(IID QWaylandShellIntegrationFactoryInterface_iid FILE "layer-shell.json")
|
||||
|
||||
public:
|
||||
QWaylandLayerShellIntegrationPlugin() {}
|
||||
QWaylandLayerShellIntegrationPlugin()
|
||||
{
|
||||
}
|
||||
|
||||
QtWaylandClient::QWaylandShellIntegration *create(
|
||||
const QString &key, const QStringList ¶mList) override {
|
||||
Q_UNUSED(key);
|
||||
Q_UNUSED(paramList);
|
||||
return new QWaylandLayerShellIntegration();
|
||||
QtWaylandClient::QWaylandShellIntegration *create(const QString &key, const QStringList ¶mList) override
|
||||
{
|
||||
Q_UNUSED(key);
|
||||
Q_UNUSED(paramList);
|
||||
return new QWaylandLayerShellIntegration();
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user