| 26 | |
| 27 | |
| 28 | SpellChecker::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 |
nothing calls this directly
no outgoing calls
no test coverage detected