sw/source/filter/ww8/docxattributeoutput.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit d142a30607c0c02f12f140cd7df927013c6e6c77 Author: Noel Grandin <[email protected]> AuthorDate: Tue Jan 6 20:03:52 2026 +0200 Commit: Xisco Fauli <[email protected]> CommitDate: Wed Jan 7 13:08:27 2026 +0100 officeotron: w:del in wrong order under the w:rPr element, w:del needs to come before w:lang Change-Id: I0bf6ddc554c44ef978b62565d5be664af406a693 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196624 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> (cherry picked from commit 40a68f926079cbe3082cacdabffac4846f342139) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196657 Reviewed-by: Xisco Fauli <[email protected]> Signed-off-by: Xisco Fauli <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196673 diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index f86efef583cb..7d45b458712e 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -3368,6 +3368,10 @@ void DocxAttributeOutput::InitCollectedRunProperties() // Write the elements in the spec order static const sal_Int32 aOrder[] = { + FSNS( XML_w, XML_del ), + FSNS( XML_w, XML_ins ), + FSNS( XML_w, XML_moveFrom ), + FSNS( XML_w, XML_moveTo ), FSNS( XML_w, XML_rStyle ), FSNS( XML_w, XML_rFonts ), FSNS( XML_w, XML_b ), @@ -3408,10 +3412,6 @@ void DocxAttributeOutput::InitCollectedRunProperties() FSNS( XML_w, XML_specVanish ), FSNS( XML_w, XML_oMath ), FSNS( XML_w, XML_rPrChange ), - FSNS( XML_w, XML_del ), - FSNS( XML_w, XML_ins ), - FSNS( XML_w, XML_moveFrom ), - FSNS( XML_w, XML_moveTo ), FSNS( XML_w14, XML_glow ), FSNS( XML_w14, XML_shadow ), FSNS( XML_w14, XML_reflection ),
