git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24635 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Edwin Leuven 2008-05-06 11:24:54 +00:00
parent d954056cc2
commit cf5b793f18

View File

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