mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
Forgotten to remove an assert I need to test.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3113 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4ec1fe07fe
commit
2296f138e7
@ -1,5 +1,7 @@
|
||||
2001-11-29 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* text2.C (removeRow): remove the assert as it can!
|
||||
|
||||
* lyxtext.h: added helper function firstRow returning firstrow and
|
||||
made firstrow private again.
|
||||
|
||||
|
@ -391,7 +391,7 @@ void LyXText::removeRow(Row * row) const
|
||||
row->next()->previous(row->previous());
|
||||
if (!row->previous()) {
|
||||
firstrow = row->next();
|
||||
lyx::Assert(firstrow);
|
||||
// lyx::Assert(firstrow);
|
||||
} else {
|
||||
row->previous()->next(row->next());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user