diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-12-30 16:10:17 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-12-30 16:10:17 +0100 |
commit | d5b4433c44f99bb30a6282c247de3938f3f8c987 (patch) | |
tree | 0a3f68a5d0fea8050d25da4a837107ae5700de27 /include | |
parent | Add smolbote.5 manpage (diff) | |
download | smolbote-d5b4433c44f99bb30a6282c247de3938f3f8c987.tar.xz |
Fix filter.header not working
Diffstat (limited to 'include')
-rw-r--r-- | include/profileinterface.h | 4 |
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; |