summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-10-03 11:11:48 +0200
committerMiklos Vajna <vmiklos@suse.cz>2012-10-03 11:12:42 +0200
commitb6aea86fe368746ea23a2fe669b1689f4d6f43e8 (patch)
tree9bfeebe2e1abce174916d22df8511b14c7c0c855
parentfdb42c397f1d15d05a74492a233df72d832cab1c (diff)
SwFrm::dumpAsXmlAttributes: dump Fmt pointer
Change-Id: Id9030f5a260fbfce88b6b238e075a7358993b355
-rw-r--r--sw/source/core/text/xmldump.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/text/xmldump.cxx b/sw/source/core/text/xmldump.cxx
index ec6408c7109d..e3ae11ad8208 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());
}
}