Small Assert -> lyx::Assert fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1967 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2001-04-27 12:17:34 +00:00
parent fdc6082cfc
commit 256339c2c3
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-04-27 Juergen Vigna <jug@sad.it>
* spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
2001-04-27 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lyxfunc.C (Dispatch): hack to make listof algorithm work

View File

@ -637,14 +637,14 @@ isp_result * sc_check_word(string const & word)
#warning Why isnt word_ok a bool? (Lgb)
#endif
int word_ok = pspell_manager_check(sc, word.c_str());
Assert(word_ok != -1);
lyx::Assert(word_ok != -1);
if (word_ok) {
result->flag = ISP_OK;
} else {
PspellWordList const * sugs =
pspell_manager_suggest(sc, word.c_str());
Assert(sugs != 0);
lyx::Assert(sugs != 0);
result->els = pspell_word_list_elements(sugs);
if (pspell_word_list_empty(sugs))
result->flag = ISP_UNKNOWN;