]> git.lyx.org Git - lyx.git/blob - src/SpellBase.C
Continue to improve GtkLengthEntry
[lyx.git] / src / SpellBase.C
1 /**
2  * \file SpellBase.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "SpellBase.h"
15 #include "gettext.h"
16
17 using std::string;
18
19
20 bool SpellBase::alive()
21 {
22         return false;
23 }
24
25
26 SpellBase::Result SpellBase::check(WordLangTuple const &)
27 {
28         return UNKNOWN_WORD;
29 }
30
31
32 void SpellBase::insert(WordLangTuple const &)
33 {}
34
35
36 void SpellBase::accept(WordLangTuple const &)
37 {}
38
39
40 string const SpellBase::nextMiss()
41 {
42         return string();
43 }
44
45
46 string const SpellBase::error()
47 {
48         return _("Native OS API not yet supported.");
49 }