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

Related: tdf#94377 RTF export: support multiple paragraphs in editeng text

Write a \par at the end of each paragraph instead of writing one at the
end of the whole text only.

Change-Id: I984b31d4ae3d2e728c993b25bfde761dcad063ae
üst 3200068c
......@@ -606,8 +606,9 @@ void RtfSdrExport::WriteOutliner(const OutlinerParaObject& rParaObj)
aAttrIter.NextPos();
}
while (nAktPos < nEnd);
m_rAttrOutput.RunText().append(OOO_STRING_SVTOOLS_RTF_PAR);
}
m_rAttrOutput.RunText().append(OOO_STRING_SVTOOLS_RTF_PAR).append('}');
m_rAttrOutput.RunText().append('}');
SAL_INFO("sw.rtf", OSL_THIS_FUNC << " end");
}
......
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