aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/profileeditorplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ProfileEditor/profileeditorplugin.h')
-rw-r--r--plugins/ProfileEditor/profileeditorplugin.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/ProfileEditor/profileeditorplugin.h b/plugins/ProfileEditor/profileeditorplugin.h
index a673436..13f6d90 100644
--- a/plugins/ProfileEditor/profileeditorplugin.h
+++ b/plugins/ProfileEditor/profileeditorplugin.h
@@ -9,7 +9,7 @@
#ifndef PROFILEEDITOR_PLUGIN_H
#define PROFILEEDITOR_PLUGIN_H
-#include <plugininterface.h>
+#include <smolbote/plugininterface.hpp>
class QDialog;
class ProfileEditorPlugin : public QObject, public PluginInterface
@@ -19,10 +19,7 @@ class ProfileEditorPlugin : public QObject, public PluginInterface
Q_INTERFACES(PluginInterface)
public:
- // PluginInterface
- QHash<QString, std::function<int()>> commands() override;
-
- // ProfileInterface
+ ~ProfileEditorPlugin() override = default;
QDialog *createWidget(QWidget *parent) const override;
};