Finally FINALLY get the bug 580 fix right

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@19558 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2007-08-14 14:17:35 +00:00
parent 8a5f90a96c
commit 67435c3b60

View File

@ -774,7 +774,7 @@ void Tabular::set_row_column_number_info()
!= Tabular::CELL_PART_OF_MULTICOLUMN) != Tabular::CELL_PART_OF_MULTICOLUMN)
++numberofcells; ++numberofcells;
// Shouldn't happen after above fix - MV // Shouldn't happen after above fix - MV
BOOST_ASSERT(numberofcells == 0); BOOST_ASSERT(numberofcells != 0);
cell_info[row][column].cellno = cell_info[row][column].cellno =
numberofcells - 1; numberofcells - 1;
} }