From cf5b793f18a14c7541d73f4f30ff14c550ae7c1c Mon Sep 17 00:00:00 2001 From: Edwin Leuven Date: Tue, 6 May 2008 11:24:54 +0000 Subject: [PATCH] fix http://bugzilla.lyx.org/show_bug.cgi?id=4778 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24635 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 2b2d57ae0f..3676b31bcf 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -1852,7 +1852,7 @@ int Tabular::TeXCellPreamble(odocstream & os, idx_type cell, bool & ismulticol) col_type const nextcol = c + columnSpan(cell); bool colright = columnRightLine(c); bool colleft = columnLeftLine(c); - bool nextcolleft = nextcol < column_info.size() && colleft; + bool nextcolleft = nextcol < column_info.size() && columnLeftLine(nextcol); bool nextcellleft = nextcol < column_info.size() && leftLine(cellIndex(r, nextcol)); bool coldouble = colright && nextcolleft; -- 2.39.2