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

paragraphs inside frames do not count

üst c9bdee0b
...@@ -1299,7 +1299,8 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword) ...@@ -1299,7 +1299,8 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
// but don't emit properties yet, since they may change till the first text token arrives // but don't emit properties yet, since they may change till the first text token arrives
m_bNeedPap = true; m_bNeedPap = true;
m_bWasInFrame = inFrame(); m_bWasInFrame = inFrame();
m_bNeedPar = false; if (!m_bWasInFrame)
m_bNeedPar = false;
} }
break; break;
case RTF_SECT: case RTF_SECT:
......
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