summaryrefslogtreecommitdiffstats
path: root/scribus/plugins/tools/hunspellcheck/hunspellpluginstructs.h
blob: 94715834f5693cf08325cead09f86e137716b822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef HUNSPELLPLUGINSTRUCTS_H
#define HUNSPELLPLUGINSTRUCTS_H

#include <QString>
#include <QStringList>

struct WordsFound {
	int start;
	int end;
	QString w;
	QStringList replacements;
	bool changed;
	bool ignore;
	int changeOffset;
	QString lang;
};

#endif // HUNSPELLPLUGINSTRUCTS_H