1
0
mirror of https://github.com/KDE/krfb synced 2026-07-01 07:41:17 -07:00

Drop empty deconstructors of plugins

We have one defined in the base class, consequently we do not violate the rule of life when removing the empty ones
This commit is contained in:
Alexander Lohnau
2022-04-18 16:58:28 +02:00
parent 0d8cc44ec2
commit c7ee6f1e0e
8 changed files with 0 additions and 19 deletions

View File

@@ -31,7 +31,6 @@ class X11EventsPlugin : public EventsPlugin
Q_OBJECT
public:
X11EventsPlugin(QObject *parent, const QVariantList &args);
~X11EventsPlugin() override = default;
EventHandler *eventHandler() override;

View File

@@ -33,7 +33,6 @@ class XdpEventsPlugin : public EventsPlugin
Q_OBJECT
public:
XdpEventsPlugin(QObject *parent, const QVariantList &args);
~XdpEventsPlugin() override = default;
EventHandler *eventHandler() override;