From d5b4433c44f99bb30a6282c247de3938f3f8c987 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 30 Dec 2018 16:10:17 +0100 Subject: Fix filter.header not working --- include/profileinterface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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; -- cgit v1.2.1