sw/source/filter/ww8/rtfattributeoutput.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)
New commits: commit 1719ee6ee790b70b16c623e673ad201d7c5be586 Author: Mike Kaganski <[email protected]> AuthorDate: Fri Jul 18 18:49:04 2025 +0200 Commit: Mike Kaganski <[email protected]> CommitDate: Fri Jul 18 20:29:30 2025 +0200 Group writes a bit more logically Grouping what logically was the end of a previous keyword, with a start of the next keyword is silly. Change-Id: Idd5a8fdb52fd394419b07167bdb608d65de844b1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188051 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx b/sw/source/filter/ww8/rtfattributeoutput.cxx index 1c7ba38e5a62..e199cb37d338 100644 --- a/sw/source/filter/ww8/rtfattributeoutput.cxx +++ b/sw/source/filter/ww8/rtfattributeoutput.cxx @@ -1864,9 +1864,8 @@ void RtfAttributeOutput::NumberingLevel(sal_uInt8 nLevel, sal_uInt16 nStart, m_rExport.Strm().WriteOString(aProperties); } - m_rExport.Strm().WriteOString(OOO_STRING_SVTOOLS_RTF_FI); - m_rExport.Strm().WriteNumberAsString(nFirstLineIndex).WriteOString(OOO_STRING_SVTOOLS_RTF_LI); - m_rExport.Strm().WriteNumberAsString(nIndentAt); + m_rExport.Strm().WriteOString(OOO_STRING_SVTOOLS_RTF_FI).WriteNumberAsString(nFirstLineIndex); + m_rExport.Strm().WriteOString(OOO_STRING_SVTOOLS_RTF_LI).WriteNumberAsString(nIndentAt); m_rExport.Strm().WriteChar('}'); if (nLevel > 8)
