diff options
Diffstat (limited to 'plugins/ProfileEditor/profileeditorplugin.h')
-rw-r--r-- | plugins/ProfileEditor/profileeditorplugin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/ProfileEditor/profileeditorplugin.h b/plugins/ProfileEditor/profileeditorplugin.h index 3999aba..899c51a 100644 --- a/plugins/ProfileEditor/profileeditorplugin.h +++ b/plugins/ProfileEditor/profileeditorplugin.h @@ -6,13 +6,13 @@ * SPDX-License-Identifier: GPL-3.0 */ -#ifndef PROFILEEDITORPLUGIN_H -#define PROFILEEDITORPLUGIN_H +#ifndef PROFILEEDITOR_PLUGIN_H +#define PROFILEEDITOR_PLUGIN_H #include <interfaces.h> class QWebEngineProfile; -class QWidget; +class QDialog; class ProfileEditorPlugin : public QObject, public PluginInterface, public ProfileInterface { Q_OBJECT @@ -23,7 +23,7 @@ public: // PluginInterface // ProfileInterface - QWidget *createWidget(QWebEngineProfile *profile, QWidget *parent) override; + QDialog *createWidget(QWebEngineProfile *profile, QWidget *parent) override; }; -#endif //PROFILEEDITORPLUGIN_H +#endif //PROFILEEDITOR_PLUGIN_H |