Kaydet (Commit) e41374f6 authored tarafından Michael Stahl's avatar Michael Stahl

sw_redlinehide_4b: fix wrong assert in AppendObjs()

Clearly this is wrong, the first node might be deleted; triggered e.g.
by ooo69593-1.odt.

Change-Id: I8f491372fcc375e68f2f7611924d8d4c7f673f17
üst a08cdc40
...@@ -1171,7 +1171,7 @@ void AppendObjs(const SwFrameFormats *const pTable, sal_uLong const nIndex, ...@@ -1171,7 +1171,7 @@ void AppendObjs(const SwFrameFormats *const pTable, sal_uLong const nIndex,
} }
else else
{ {
assert(nIndex == iter->pNode->GetIndex()); // first iteration assert(pMerged->pParaPropsNode == iter->pNode); // first iteration
} }
pNode = iter->pNode; pNode = iter->pNode;
iterFirst = iter; iterFirst = iter;
......
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