diff options
| author | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-04-12 21:33:03 +0000 |
|---|---|---|
| committer | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-04-12 21:33:03 +0000 |
| commit | f3403971efbfd72c8a59eb1957292cf534f1233b (patch) | |
| tree | e7f9c07edc09836a262befb69e7af168bc0b8563 /scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h | |
| parent | edaa5356a69507d02769dc9a69f32021e6e07ac3 (diff) | |
| download | scribus-f3403971efbfd72c8a59eb1957292cf534f1233b.tar.gz scribus-f3403971efbfd72c8a59eb1957292cf534f1233b.tar.xz scribus-f3403971efbfd72c8a59eb1957292cf534f1233b.zip | |
Add hunspell based spell checker - not enabled, backup only for now, not enabled in the build
git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17437 11d20701-8431-0410-a711-e3c959e3b870
Diffstat (limited to 'scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h')
| -rw-r--r-- | scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h b/scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h new file mode 100644 index 0000000..0515cbb --- /dev/null +++ b/scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h @@ -0,0 +1,16 @@ +#ifndef HUNSPELLPLUGINSTRUCTS_H +#define HUNSPELLPLUGINSTRUCTS_H + +#include <QString> +#include <QStringList> + +struct WordsFound { + int start; + int end; + QString w; + QStringList replacements; + bool changed; + bool ignore; +}; + +#endif // HUNSPELLPLUGINSTRUCTS_H |
