X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fpspell.C;h=cd03873b4440ae13ca9fd192ba683580608b2013;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=a3b050afca072d18af74477a795ecc347d028510;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/pspell.C b/src/pspell.C index a3b050afca..cd03873b44 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 @@ -26,6 +24,11 @@ extern "C" { #include + +namespace lyx { + +using docstring; + using std::endl; using std::string; @@ -83,7 +86,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()) { @@ -107,9 +110,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; } @@ -143,7 +146,7 @@ string const PSpell::nextMiss() } -string const PSpell::error() +docstring const PSpell::error() { char const * err = 0; @@ -156,4 +159,5 @@ string const PSpell::error() return ""; } -#endif // USE_PSPELL + +} // namespace lyx