From: Edwin Leuven Date: Tue, 6 May 2008 11:24:54 +0000 (+0000) Subject: fix http://bugzilla.lyx.org/show_bug.cgi?id=4778 X-Git-Tag: 1.6.10~4880 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=cf5b793f18a14c7541d73f4f30ff14c550ae7c1c;p=features.git 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 --- 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;