diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-01-04 21:45:10 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-01-05 09:03:28 +0100 |
commit | da348a4740267592c36902ac6295302e7c9647a7 (patch) | |
tree | 638f53e5455c9479f0b011025e2a34864430399d /editeng | |
parent | 9feea2ecc59c6daa42dece6c30cf33f5e7df7561 (diff) |
sw doc model xml dump: improve keep-with-next output
From: <SfxBoolItem whichId="110" value="TRUE"/>
To: <SvxFormatKeepItem><SfxBoolItem whichId="110" value="TRUE"/>
Change-Id: I08f45e3481a5beebb4c1b8fcf0919741ad185e79
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108687
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/frmitems.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index cb3c4a14a136..4f365da2b7de 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -2643,6 +2643,14 @@ bool SvxFormatKeepItem::GetPresentation return true; } +void SvxFormatKeepItem::dumpAsXml(xmlTextWriterPtr pWriter) const +{ + xmlTextWriterStartElement(pWriter, BAD_CAST("SvxFormatKeepItem")); + + SfxBoolItem::dumpAsXml(pWriter); + + xmlTextWriterEndElement(pWriter); +} SvxLineItem::SvxLineItem( const sal_uInt16 nId ) : SfxPoolItem ( nId ) |