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:
Jürgen Vigna 2001-11-29 14:08:19 +00:00
parent 4ec1fe07fe
commit 2296f138e7
2 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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());
}