summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-12-16 12:44:22 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-12-16 13:45:56 +0100
commit620f365032ed236e7350c87126e986cf236f3996 (patch)
tree89a553a92b8798ceee034a18185ce990d05b5735 /sw
parent8a342e9f6ad701bd46ecca1c3d270ef2d9670d44 (diff)
sw layout xml dump: show if the frame has fix size
Change-Id: Ie9f9c5cc94b87914bcd7d5392f6fd1ee447e94ec
Diffstat (limited to 'sw')
-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 83adb1f84fd7..ede5dc0acac5 100644
--- a/sw/source/core/text/xmldump.cxx
+++ b/sw/source/core/text/xmldump.cxx
@@ -357,6 +357,7 @@ void SwFrame::dumpInfosAsXml( xmlTextWriterPtr writer ) const
xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "top" ), "%ld", Frame().Top() );
xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "width" ), "%ld", Frame().Width() );
xmlTextWriterWriteFormatAttribute( writer, BAD_CAST( "height" ), "%ld", Frame().Height() );
+ xmlTextWriterWriteAttribute(writer, BAD_CAST("mbFixSize"), BAD_CAST(OString::boolean(HasFixSize()).getStr()));
xmlTextWriterEndElement( writer );
}