X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fpspell.C;h=f7122650ba6eafa317d065efd8cf8bda9c8f961b;hb=9ee46b846e5e84ad40ceda4f4af94aeb86cd90a2;hp=8f0c93b5dde79449f4b79a31f9cc43d37c18a1fe;hpb=d4b333e698660b58177322072a2f3a5e5073ace5;p=lyx.git diff --git a/src/pspell.C b/src/pspell.C index 8f0c93b5dd..f7122650ba 100644 --- a/src/pspell.C +++ b/src/pspell.C @@ -11,8 +11,6 @@ #include -#ifdef USE_PSPELL - #include "debug.h" #define USE_ORIGINAL_MANAGER_FUNCS 1 @@ -27,6 +25,7 @@ extern "C" { #include using std::endl; +using std::string; PSpell::PSpell(BufferParams const &, string const & lang) @@ -82,7 +81,7 @@ void PSpell::addManager(string const & lang) enum PSpell::Result PSpell::check(WordLangTuple const & word) { - Result res = UNKNOWN; + Result res = UNKNOWN_WORD; Managers::iterator it = managers_.find(word.lang_code()); if (it == managers_.end()) { @@ -106,9 +105,9 @@ enum PSpell::Result PSpell::check(WordLangTuple const & word) BOOST_ASSERT(sugs != 0); els = pspell_word_list_elements(sugs); if (pspell_word_list_empty(sugs)) - res = UNKNOWN; + res = UNKNOWN_WORD; else - res = MISSED; + res = SUGGESTED_WORDS; } return res; } @@ -154,5 +153,3 @@ string const PSpell::error() return err; return ""; } - -#endif // USE_PSPELL