]> git.lyx.org Git - lyx.git/blobdiff - src/pspell.C
Add GTK bibitem dialog
[lyx.git] / src / pspell.C
index a3b050afca072d18af74477a795ecc347d028510..f7122650ba6eafa317d065efd8cf8bda9c8f961b 100644 (file)
@@ -11,8 +11,6 @@
 
 #include <config.h>
 
-#ifdef USE_PSPELL
-
 #include "debug.h"
 
 #define USE_ORIGINAL_MANAGER_FUNCS 1
@@ -83,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()) {
@@ -107,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;
 }
@@ -155,5 +153,3 @@ string const PSpell::error()
                return err;
        return "";
 }
-
-#endif // USE_PSPELL