From 67435c3b605aeb9d2c6d8d86ebf42462f868e483 Mon Sep 17 00:00:00 2001 From: Martin Vermeer Date: Tue, 14 Aug 2007 14:17:35 +0000 Subject: [PATCH] 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 --- src/insets/InsetTabular.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index 2504f97f6d..4f604a3d7e 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -774,7 +774,7 @@ void Tabular::set_row_column_number_info() != Tabular::CELL_PART_OF_MULTICOLUMN) ++numberofcells; // Shouldn't happen after above fix - MV - BOOST_ASSERT(numberofcells == 0); + BOOST_ASSERT(numberofcells != 0); cell_info[row][column].cellno = numberofcells - 1; }