Kaydet (Commit) 49493777 authored tarafından Miklos Vajna's avatar Miklos Vajna

fdo#67365 fix RTF import of inherited row props wrt unusual group stack

Change-Id: I273d89a0708601a38dd8bda734a72b4c92da2cc4
üst 3a46d91f
......@@ -4691,6 +4691,11 @@ int RTFDocumentImpl::popState()
m_aStates.top().nCells = aState.nCells;
m_aStates.top().aTableCellsSprms = aState.aTableCellsSprms;
m_aStates.top().aTableCellsAttributes = aState.aTableCellsAttributes;
// Also the inherited properties should be kept accross groups.
m_aStates.top().aTableInheritingCellsSprms = aState.aTableInheritingCellsSprms;
m_aStates.top().aTableInheritingCellsAttributes = aState.aTableInheritingCellsAttributes;
m_aStates.top().nInheritingCells = aState.nInheritingCells;
}
return 0;
......
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