]> git.lyx.org Git - lyx.git/blobdiff - src/PSpell.cpp
Remove invalid comment.
[lyx.git] / src / PSpell.cpp
index 3d5f043dcf523961cd989ce0f437b97b2d7522cc..09044af8560759993b5c41ae4c2654dfd66b5f5b 100644 (file)
@@ -11,7 +11,7 @@
 
 #include <config.h>
 
-#include "debug.h"
+#include "support/debug.h"
 
 #define USE_ORIGINAL_MANAGER_FUNCS 1
 // new aspell pspell missing extern "C"
@@ -22,26 +22,25 @@ extern "C" {
 #include "PSpell.h"
 #include "WordLangTuple.h"
 
-#include <boost/assert.hpp>
+#include "support/lassert.h"
 
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using std::endl;
-using std::string;
-
 
 PSpell::PSpell(BufferParams const &, string const & lang)
        : els(0), spell_error_object(0)
 {
        addManager(lang);
-       LYXERR(Debug::GUI) << "created pspell" << endl;
+       LYXERR(Debug::GUI, "created pspell");
 }
 
 
 PSpell::~PSpell()
 {
-       LYXERR(Debug::GUI) << "killed pspell" << endl;
+       LYXERR(Debug::GUI, "killed pspell");
 
        if (spell_error_object) {
                delete_pspell_can_have_error(spell_error_object);
@@ -99,14 +98,14 @@ enum PSpell::Result PSpell::check(WordLangTuple const & word)
        PspellManager * m = it->second.manager;
 
        int word_ok = pspell_manager_check(m, to_utf8(word.word()).c_str());
-       BOOST_ASSERT(word_ok != -1);
+       LASSERT(word_ok != -1, /**/);
 
        if (word_ok) {
                res = OK;
        } else {
                PspellWordList const * sugs =
                        pspell_manager_suggest(m, to_utf8(word.word()).c_str());
-               BOOST_ASSERT(sugs != 0);
+               LASSERT(sugs != 0, /**/);
                els = pspell_word_list_elements(sugs);
                if (pspell_word_list_empty(sugs))
                        res = UNKNOWN_WORD;