]> git.lyx.org Git - lyx.git/blobdiff - src/pspell.C
fix reading the author field.
[lyx.git] / src / pspell.C
index 1b335e930679743b1322f0afa265eb9d5745ebc1..a3b050afca072d18af74477a795ecc347d028510 100644 (file)
@@ -13,7 +13,6 @@
 
 #ifdef USE_PSPELL
 
-#include "support/LAssert.h"
 #include "debug.h"
 
 #define USE_ORIGINAL_MANAGER_FUNCS 1
@@ -25,9 +24,11 @@ extern "C" {
 #include "pspell.h"
 #include "WordLangTuple.h"
 
-using namespace lyx::support;
+#include <boost/assert.hpp>
 
 using std::endl;
+using std::string;
+
 
 PSpell::PSpell(BufferParams const &, string const & lang)
        : els(0), spell_error_object(0)
@@ -96,14 +97,14 @@ enum PSpell::Result PSpell::check(WordLangTuple const & word)
        PspellManager * m = it->second.manager;
 
        int word_ok = pspell_manager_check(m, word.word().c_str());
-       Assert(word_ok != -1);
+       BOOST_ASSERT(word_ok != -1);
 
        if (word_ok) {
                res = OK;
        } else {
                PspellWordList const * sugs =
                        pspell_manager_suggest(m, word.word().c_str());
-               Assert(sugs != 0);
+               BOOST_ASSERT(sugs != 0);
                els = pspell_word_list_elements(sugs);
                if (pspell_word_list_empty(sugs))
                        res = UNKNOWN;