MCPcopy Create free account
hub / github.com/baumgarr/nixnote2 / SpellChecker

Method SpellChecker

utilities/spellchecker.cpp:28–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26
27
28SpellChecker::SpellChecker(QObject *parent) :
29 QObject(parent)
30{
31 dictionaryPath.append("/usr/share/hunspell/");
32 dictionaryPath.append("/usr/share/myspell/");
33 dictionaryPath.append("/usr/share/myspell/dicts/");
34 dictionaryPath.append("/Library/Spelling/");
35 dictionaryPath.append("/opt/openoffice.org/basis3.0/share/dict/ooo/");
36 dictionaryPath.append("/opt/openoffice.org2.4/share/dict/ooo/");
37 dictionaryPath.append("/usr/lib/openoffice.org2.4/share/dict/ooo");
38 dictionaryPath.append("/opt/openoffice.org2.3/share/dict/ooo/");
39 dictionaryPath.append("/usr/lib/openoffice.org2.3/share/dict/ooo/");
40 dictionaryPath.append("/opt/openoffice.org2.2/share/dict/ooo/");
41 dictionaryPath.append("/usr/lib/openoffice.org2.2/share/dict/ooo/");
42 dictionaryPath.append("/opt/openoffice.org2.1/share/dict/ooo/");
43 dictionaryPath.append("/usr/lib/openoffice.org2.1/share/dict/ooo");
44 dictionaryPath.append("/opt/openoffice.org2.0/share/dict/ooo/");
45 dictionaryPath.append("/usr/lib/openoffice.org2.0/share/dict/ooo/");
46
47 error = false;
48}
49
50
51

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected