[Libreoffice-commits] .: sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Oct 3 02:12:58 PDT 2012


 sw/source/core/text/xmldump.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit b6aea86fe368746ea23a2fe669b1689f4d6f43e8
Author: Miklos Vajna <vmiklos at suse.cz>
Date:   Wed Oct 3 11:11:48 2012 +0200

    SwFrm::dumpAsXmlAttributes: dump Fmt pointer
    
    Change-Id: Id9030f5a260fbfce88b6b238e075a7358993b355

diff --git a/sw/source/core/text/xmldump.cxx b/sw/source/core/text/xmldump.cxx
index ec6408c..e3ae11a 100644
--- a/sw/source/core/text/xmldump.cxx
+++ b/sw/source/core/text/xmldump.cxx
@@ -384,6 +384,7 @@ void SwFrm::dumpAsXmlAttributes( xmlTextWriterPtr writer )
         SwHeadFootFrm *pHeadFootFrm = (SwHeadFootFrm*)this;
         rtl::OUString aFmtName = pHeadFootFrm->GetFmt()->GetName();
         xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "fmtName" ), "%s", BAD_CAST(rtl::OUStringToOString(aFmtName, RTL_TEXTENCODING_UTF8).getStr()));
+        xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "fmtPtr" ), "%p", pHeadFootFrm->GetFmt());
     }
 }
 


More information about the Libreoffice-commits mailing list