mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
RtfFormatReader - fix bug #45619
This commit is contained in:
@ -261,6 +261,11 @@ std::wstring RtfField::RenderToOOX(RenderParameter oRenderParameter)
|
|||||||
RtfParagraph *paragraph = dynamic_cast<RtfParagraph *>(m_pResult->m_pTextItems->m_aArray[i].get());
|
RtfParagraph *paragraph = dynamic_cast<RtfParagraph *>(m_pResult->m_pTextItems->m_aArray[i].get());
|
||||||
if (paragraph)
|
if (paragraph)
|
||||||
{
|
{
|
||||||
|
if (bDelete) sResult += L"</w:del>";
|
||||||
|
if (bInsert) sResult += L"</w:ins>";
|
||||||
|
|
||||||
|
bDelete = bInsert = false;
|
||||||
|
|
||||||
sResult += L"</w:p>";
|
sResult += L"</w:p>";
|
||||||
sResult += L"<w:p>";
|
sResult += L"<w:p>";
|
||||||
sResult += L"<w:pPr>";
|
sResult += L"<w:pPr>";
|
||||||
|
|||||||
Reference in New Issue
Block a user