mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Crash fix: end of doc check was wrong following previous cleanup.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30232 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5e01b2dfa1
commit
369b0714d6
@ -223,7 +223,7 @@ void GuiSpellchecker::check()
|
||||
d->progress_ += progress;
|
||||
|
||||
// end of document
|
||||
if (from == to) {
|
||||
if (from == doc_iterator_end(&buffer())) {
|
||||
showSummary();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user