mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
fix a bug in ParagraphList
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6581 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2e10f5a46b
commit
a6c7b5bc14
@ -1,3 +1,8 @@
|
||||
2003-03-26 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
* ParagraphList.C (erase): handle the case where it == begin
|
||||
correctly.
|
||||
|
||||
2003-03-25 John Levon <levon@movementarian.org>
|
||||
|
||||
* Makefile.am:
|
||||
@ -47,7 +52,7 @@
|
||||
2003-03-22 John Levon <levon@movementarian.org>
|
||||
|
||||
* BufferView_pimpl.C:
|
||||
* lyxtext.h:
|
||||
* lyxtext.h:
|
||||
* rowpainter.C:
|
||||
* rowpainter.h:
|
||||
* text.C:
|
||||
|
@ -125,6 +125,9 @@ void ParagraphList::erase(ParagraphList::iterator it)
|
||||
|
||||
if (prev)
|
||||
prev->next(next);
|
||||
else
|
||||
parlist = next;
|
||||
|
||||
if (next)
|
||||
next->previous(prev);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user