summaryrefslogtreecommitdiffstats
path: root/src/webengine/api/qquickwebengineprofile.h
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2016-04-28 11:32:24 +0200
committerMichal Klocek <michal.klocek@theqtcompany.com>2016-05-06 20:17:08 +0000
commitd364c05de52f9ab39034e56cac4e0a7981dc541d (patch)
tree66f9fba711bb49536b577ef3552c4ddf7006ad6b /src/webengine/api/qquickwebengineprofile.h
parente87ba5b27bf753498adb00eef53f224c1123d25f (diff)
Remove spellchecking support
Spellchecking API needs a bit more reviews and love. Current API is not intuitive and partly broken. Change-Id: Ie9cd371f38cca2f6b3f56a8699ad874cd332c318 Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'src/webengine/api/qquickwebengineprofile.h')
-rw-r--r--src/webengine/api/qquickwebengineprofile.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/webengine/api/qquickwebengineprofile.h b/src/webengine/api/qquickwebengineprofile.h
index 273375fc6..5c1218de9 100644
--- a/src/webengine/api/qquickwebengineprofile.h
+++ b/src/webengine/api/qquickwebengineprofile.h
@@ -71,8 +71,6 @@ class Q_WEBENGINE_EXPORT QQuickWebEngineProfile : public QObject {
Q_PROPERTY(QString httpAcceptLanguage READ httpAcceptLanguage WRITE setHttpAcceptLanguage NOTIFY httpAcceptLanguageChanged FINAL REVISION 1)
Q_PROPERTY(PersistentCookiesPolicy persistentCookiesPolicy READ persistentCookiesPolicy WRITE setPersistentCookiesPolicy NOTIFY persistentCookiesPolicyChanged FINAL)
Q_PROPERTY(int httpCacheMaximumSize READ httpCacheMaximumSize WRITE setHttpCacheMaximumSize NOTIFY httpCacheMaximumSizeChanged FINAL)
- Q_PROPERTY(QString spellCheckLanguage READ spellCheckLanguage WRITE setSpellCheckLanguage NOTIFY spellCheckLanguageChanged FINAL REVISION 2)
- Q_PROPERTY(bool spellCheckEnabled READ isSpellCheckEnabled WRITE setSpellCheckEnabled NOTIFY spellCheckEnabledChanged FINAL REVISION 2)
public:
QQuickWebEngineProfile(QObject *parent = Q_NULLPTR);
@@ -131,11 +129,6 @@ public:
void clearHttpCache();
- Q_REVISION(2) void setSpellCheckLanguage(const QString &language);
- Q_REVISION(2) QString spellCheckLanguage() const;
- Q_REVISION(2) void setSpellCheckEnabled(bool enabled);
- Q_REVISION(2) bool isSpellCheckEnabled() const;
-
static QQuickWebEngineProfile *defaultProfile();
Q_SIGNALS: