Kaydet (Commit) c8b6751c authored tarafından Caolán McNamara's avatar Caolán McNamara

get the vertical span from the reliable getRowSpansOfRow

unstead of the unreliable pTblBox

Change-Id: I083560fdbcf83173c5f3c42267ca2d8e4e6d9a17
üst 5eff55bf
......@@ -2839,7 +2839,8 @@ void DocxAttributeOutput::TableCellProperties( ww8::WW8TableNodeInfoInner::Point
}
// Vertical merges
long vSpan = pTblBox->getRowSpan( );
ww8::RowSpansPtr xRowSpans = pTableTextNodeInfoInner->getRowSpansOfRow();
sal_Int32 vSpan = (*xRowSpans)[nCell];
if ( vSpan > 1 )
{
m_pSerializer->singleElementNS( XML_w, XML_vMerge,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment