mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
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:
parent
fdc6082cfc
commit
256339c2c3
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user