sw/source/filter/ww8/docxtablestyleexport.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 6630779e275e4c980d1a563a8428fd5dbfe4ac71 Author: Noel Grandin <[email protected]> AuthorDate: Tue Dec 9 21:20:13 2025 +0200 Commit: Xisco Fauli <[email protected]> CommitDate: Fri Dec 12 13:13:15 2025 +0100 officeotron: w:spacing in wrong order found by converting the document in testNumberedList to docx, then running officeotron on it. Change-Id: I090b38a9a2e74dd8ec1c64aa818d976e319f59b2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195333 Tested-by: Jenkins Reviewed-by: Michael Stahl <[email protected]> (cherry picked from commit 31ed14cdc3880d3cd04fe70724ec62c286eca715) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195365 Reviewed-by: Xisco Fauli <[email protected]> Signed-off-by: Xisco Fauli <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195535 diff --git a/sw/source/filter/ww8/docxtablestyleexport.cxx b/sw/source/filter/ww8/docxtablestyleexport.cxx index 9397ea3e57bb..0e864b095015 100644 --- a/sw/source/filter/ww8/docxtablestyleexport.cxx +++ b/sw/source/filter/ww8/docxtablestyleexport.cxx @@ -497,9 +497,9 @@ void DocxTableStyleExport::Impl::tableStylePPr(const uno::Sequence<beans::Proper } if (bWordWrap) m_pSerializer->singleElementNS(XML_w, XML_wordWrap); - tableStylePInd(aInd); handleBoolean(aSnapToGrid, XML_snapToGrid); tableStylePSpacing(aSpacing); + tableStylePInd(aInd); if (!aJc.isEmpty()) m_pSerializer->singleElementNS(XML_w, XML_jc, FSNS(XML_w, XML_val), aJc);
