mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
take care of overlooked contingency
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23945 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fb25ff1819
commit
5e6343c9d1
@ -1863,9 +1863,10 @@ int Tabular::TeXCellPreamble(odocstream & os, idx_type cell) const
|
||||
Tabular::VAlignment valign = getVAlignment(cell, !isMultiColumn(cell));
|
||||
LyXAlignment align = getAlignment(cell, !isMultiColumn(cell));
|
||||
col_type c = cellColumn(cell);
|
||||
if (isMultiColumn(cell)
|
||||
|| (leftLine(cell) && !columnLeftLine(c))
|
||||
|| (rightLine(cell) && !columnRightLine(c))) {
|
||||
bool needmulticol = (leftLine(cell) && !columnLeftLine(c))
|
||||
|| (rightLine(cell) && !columnRightLine(c))
|
||||
|| (!rightLine(cell) && c < columnCount() -1 && columnLeftLine(c + 1));
|
||||
if (isMultiColumn(cell) || needmulticol) {
|
||||
os << "\\multicolumn{" << columnSpan(cell) << "}{";
|
||||
if (leftLine(cell))
|
||||
os << '|';
|
||||
@ -1901,7 +1902,8 @@ int Tabular::TeXCellPreamble(odocstream & os, idx_type cell) const
|
||||
}
|
||||
} // end if else !getPWidth
|
||||
} // end if else !cellinfo_of_cell
|
||||
if (rightLine(cell))
|
||||
if (rightLine(cell) || (!rightLine(cell)
|
||||
&& c < columnCount() -1 && columnLeftLine(c + 1)))
|
||||
os << '|';
|
||||
os << "}{";
|
||||
}
|
||||
@ -1953,9 +1955,10 @@ int Tabular::TeXCellPostamble(odocstream & os, idx_type cell) const
|
||||
ret += 2;
|
||||
}
|
||||
col_type c = cellColumn(cell);
|
||||
if (isMultiColumn(cell)
|
||||
|| (leftLine(cell) && !columnLeftLine(c))
|
||||
|| (rightLine(cell) && !columnRightLine(c))) {
|
||||
bool needmulticol = (leftLine(cell) && !columnLeftLine(c))
|
||||
|| (rightLine(cell) && !columnRightLine(c))
|
||||
|| (!rightLine(cell) && c < columnCount() -1 && columnLeftLine(c + 1));
|
||||
if (isMultiColumn(cell) || needmulticol) {
|
||||
os << '}';
|
||||
}
|
||||
if (getRotateCell(cell)) {
|
||||
|
Loading…
Reference in New Issue
Block a user