X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FAspellChecker.cpp;h=ad4ca976e89311f636dff4eb754afee0af40571c;hb=4db3e641ed6765e005343010cb90ee8af26f8f99;hp=1e423526905cbd2b485e5d9aefb425ade43705c2;hpb=14e01a92a4a8b3c861bec41d33a1743870844e63;p=lyx.git diff --git a/src/AspellChecker.cpp b/src/AspellChecker.cpp index 1e42352690..ad4ca976e8 100644 --- a/src/AspellChecker.cpp +++ b/src/AspellChecker.cpp @@ -361,7 +361,7 @@ SpellChecker::Result AspellChecker::Private::check( for (; result == WORD_OK;) { string const word_str = toAspellWord(w1); int const word_ok = aspell_speller_check(m, word_str.c_str(), -1); - LASSERT(word_ok != -1, /**/); + LASSERT(word_ok != -1, return UNKNOWN_WORD); result = (word_ok) ? WORD_OK : UNKNOWN_WORD; if (rest.empty()) break; @@ -371,7 +371,7 @@ SpellChecker::Result AspellChecker::Private::check( return result; string const word_str = toAspellWord(word.word()); int const word_ok = aspell_speller_check(m, word_str.c_str(), -1); - LASSERT(word_ok != -1, /**/); + LASSERT(word_ok != -1, return UNKNOWN_WORD); return (word_ok) ? WORD_OK : UNKNOWN_WORD; } @@ -480,7 +480,7 @@ void AspellChecker::suggest(WordLangTuple const & wl, string const word = d->toAspellWord(wl.word()); AspellWordList const * sugs = aspell_speller_suggest(m, word.c_str(), -1); - LASSERT(sugs != 0, /**/); + LASSERT(sugs != 0, return); AspellStringEnumeration * els = aspell_word_list_elements(sugs); if (!els || aspell_word_list_empty(sugs)) return;