diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-11-09 15:38:01 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-11-09 15:38:01 +0100 |
commit | a8c1ed47fb9dc2e878ad5f2cf26b967cf8e09d34 (patch) | |
tree | 6d8719949d8634db18aa06c85893f730bed54e62 | |
parent | b6bee78750a84e9598d836223bf9a0937893dcc0 (diff) |
This reverts commit dad32b63f852716af94cf995696b62b6e60724bd.
-rw-r--r-- | sw/source/filter/ww8/ww8par.cxx | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx index 903f944535ac..0886debc7155 100644 --- a/sw/source/filter/ww8/ww8par.cxx +++ b/sw/source/filter/ww8/ww8par.cxx @@ -3530,11 +3530,24 @@ bool SwWW8ImplReader::ReadChar(long nPosCp, long nCpOfs) } break; case 0x7: - bNewParaEnd = true; - if (m_pPlcxMan->GetPapPLCF()->Where() == nCpOfs+nPosCp+1) - TabCellEnd(); // Table cell/row end - else - bParaMark = true; + { + bNewParaEnd = true; + WW8PLCFxDesc* pPap = m_pPlcxMan->GetPap(); + //The last paragraph of each cell is terminated by a special + //paragraph mark called a cell mark. Following the cell mark + //that ends the last cell of a table row, the table row is + //terminated by a special paragraph mark called a row mark + // + //So the 0x7 should be right at the end of the previous + //range to be a real cell-end. + if (pPap->nOrigStartPos == nCpOfs+nPosCp+1 || + pPap->nOrigStartPos == WW8_CP_MAX) + { + TabCellEnd(); // Table cell/row end + } + else + bParaMark = true; + } break; case 0xf: if( !m_bSpec ) // "Satellite" |