summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/dictionary.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-11-26 15:58:10 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-11-26 15:58:10 +0300
commit70cd3610f4ec0131fe3c9308a483935e9f1c788c (patch)
treea607747eb36108d3cee6fafde2f4062120ad9360 /plugins/SpellChecker/src/dictionary.h
parent94782312a45edad08d6544be5a6aba402f461da1 (diff)
SpellChecker: hunspell part moved to the separate module
Diffstat (limited to 'plugins/SpellChecker/src/dictionary.h')
-rw-r--r--plugins/SpellChecker/src/dictionary.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/SpellChecker/src/dictionary.h b/plugins/SpellChecker/src/dictionary.h
index 35f94dc4f8..8ba9ee2acf 100644
--- a/plugins/SpellChecker/src/dictionary.h
+++ b/plugins/SpellChecker/src/dictionary.h
@@ -33,8 +33,9 @@ struct Dictionary
wchar_t full_name[256];
wchar_t source[128];
AutoReplaceMap *autoReplace = 0;
- HANDLE hIcolib;
+ HANDLE hIcolib = 0;
+ Dictionary(const wchar_t *aLanguage, const wchar_t *aSource);
virtual ~Dictionary();
void GetInfo();