summaryrefslogtreecommitdiffstats
path: root/src/core/browser_context_qt.h
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2016-04-28 19:20:33 +0200
committerMichal Klocek <michal.klocek@theqtcompany.com>2016-05-04 08:38:09 +0000
commit0bf8a13a4d0391339bae686e199fb922b64a1dcc (patch)
tree1a5e0f3a6009cd819510e7a7b11bb2bd34ad11bb /src/core/browser_context_qt.h
parent194c357aef23bf28befe1d51b343b5ac0683f728 (diff)
Remove availableDictionaries from spellcheck api
This method is broken, since SpellcheckerService is lazily initialized and dictionaries might be not loaded yet. Moreover there is a missing implementation on mac. Instead log warning when SpellcheckService can not load dictionary. Change-Id: Ifa2e769d83307543fa6cdf529475e9ab980022f0 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com>
Diffstat (limited to 'src/core/browser_context_qt.h')
-rw-r--r--src/core/browser_context_qt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/browser_context_qt.h b/src/core/browser_context_qt.h
index 08ac05fd4..e2156f147 100644
--- a/src/core/browser_context_qt.h
+++ b/src/core/browser_context_qt.h
@@ -92,7 +92,7 @@ public:
BrowserContextAdapter *adapter() { return m_adapter; }
#if defined(ENABLE_SPELLCHECK)
- QStringList spellCheckLanguages(const QStringList &acceptLanguages);
+ void failedToLoadDictionary(const std::string& language) override;
void setSpellCheckLanguage(const QString &language);
QString spellCheckLanguage() const;
void setSpellCheckEnabled(bool enabled);