aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-12-30 16:10:17 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-12-30 16:10:17 +0100
commitd5b4433c44f99bb30a6282c247de3938f3f8c987 (patch)
tree0a3f68a5d0fea8050d25da4a837107ae5700de27 /include
parentAdd smolbote.5 manpage (diff)
downloadsmolbote-d5b4433c44f99bb30a6282c247de3938f3f8c987.tar.xz
Fix filter.header not working
Diffstat (limited to 'include')
-rw-r--r--include/profileinterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/profileinterface.h b/include/profileinterface.h
index c24a4ae..e25b085 100644
--- a/include/profileinterface.h
+++ b/include/profileinterface.h
@@ -36,8 +36,8 @@ class Profile : public QWebEngineProfile
Q_PROPERTY(bool spellCheckEnabled READ isSpellCheckEnabled WRITE setSpellCheckEnabled NOTIFY propertyChanged)
protected:
- explicit Profile(QObject *parent = nullptr) : QWebEngineProfile(parent) {};
- explicit Profile(const QString &storageName, QObject *parent = nullptr) : QWebEngineProfile(storageName, parent) {};
+ explicit Profile(QObject *parent = nullptr) : QWebEngineProfile(parent) {}
+ explicit Profile(const QString &storageName, QObject *parent = nullptr) : QWebEngineProfile(storageName, parent) {}
public:
virtual const QString name() const = 0;