sw/source/filter/ww8/docxattributeoutput.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit ca61332eef143162454eb04993bd10c074348692
Author:     Noel Grandin <[email protected]>
AuthorDate: Tue Dec 9 17:10:47 2025 +0200
Commit:     Noel Grandin <[email protected]>
CommitDate: Wed Dec 10 09:40:19 2025 +0100

    officeotron: w:cellIns needs to come at the end
    
    Found by running tdf127814 with validation on.
    
    Change-Id: I4f479596db9042fae507e52116f01aef762b3f2f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195330
    Reviewed-by: Michael Stahl <[email protected]>
    Tested-by: Jenkins

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 22406b69160a..8d3e9369592b 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4774,9 +4774,6 @@ void DocxAttributeOutput::TableCellProperties( 
ww8::WW8TableNodeInfoInner::Point
 
     bool const bEcma = GetExport().GetFilter().getVersion() == 
oox::core::ECMA_376_1ST_EDITION;
 
-    // Output any table cell redlines if there are any attached to this 
specific cell
-    TableCellRedline( pTableTextNodeInfoInner );
-
     if (const SfxGrabBagItem* pItem = 
pTableBox->GetFrameFormat()->GetAttrSet().GetItem<SfxGrabBagItem>(RES_FRMATR_GRABBAG))
     {
         const std::map<OUString, uno::Any>& rGrabBag = pItem->GetGrabBag();
@@ -4843,6 +4840,9 @@ void DocxAttributeOutput::TableCellProperties( 
ww8::WW8TableNodeInfoInner::Point
 
     TableVerticalCell( pTableTextNodeInfoInner );
 
+    // Output any table cell redlines if there are any attached to this 
specific cell
+    TableCellRedline( pTableTextNodeInfoInner );
+
     m_pSerializer->endElementNS( XML_w, XML_tcPr );
 }
 

Reply via email to