]> git.lyx.org Git - lyx.git/blobdiff - src/pspell.C
some tabular fixes for the problems reported by Helge
[lyx.git] / src / pspell.C
index 8f0c93b5dde79449f4b79a31f9cc43d37c18a1fe..9ca0feaeeec9882301fdbf6d0324c938943158b4 100644 (file)
@@ -27,6 +27,7 @@ extern "C" {
 #include <boost/assert.hpp>
 
 using std::endl;
+using std::string;
 
 
 PSpell::PSpell(BufferParams const &, string const & lang)
@@ -82,7 +83,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 +107,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;
 }