[Libreoffice-commits] core.git: sw/source

Adam Co rattles2013 at gmail.com
Wed Feb 12 02:02:17 PST 2014


 sw/source/core/docnode/nodedump.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit c4c1fa13989c8bd4f7a4ba8f57be4c7a40522b8f
Author: Adam Co <rattles2013 at gmail.com>
Date:   Wed Feb 5 13:47:40 2014 +0200

    Add XML dumping of the new 'SwTableCellRedline'
    
    Change-Id: I4072130ff0ce712f02d1dd8f12003170116216a2
    Reviewed-on: https://gerrit.libreoffice.org/7876
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/sw/source/core/docnode/nodedump.cxx b/sw/source/core/docnode/nodedump.cxx
index c15ba59..b4d455b 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -618,8 +618,11 @@ void SwExtraRedlineTbl::dumpAsXml( xmlTextWriterPtr w )
         writer.startElement( "swextraredline" );
         {
             const SwTableRowRedline*           pTableRowRedline           = dynamic_cast<const SwTableRowRedline*>(pExtraRedline);
+            const SwTableCellRedline*          pTableCellRedline          = dynamic_cast<const SwTableCellRedline*>(pExtraRedline);
             if (pTableRowRedline)
                 writer.writeFormatAttribute( "extra_redline_type", "%s", BAD_CAST( "table row" ) );
+            else if (pTableCellRedline)
+                writer.writeFormatAttribute( "extra_redline_type", "%s", BAD_CAST( "table cell" ) );
             else
                 writer.writeFormatAttribute( "extra_redline_type", "%s", BAD_CAST( "UNKNOWN" ) );
         }


More information about the Libreoffice-commits mailing list