summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-06-09 13:43:19 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-06-09 21:23:19 +0200
commit93f2cb69575df5b4a9e2c509ee2b691dc013045d (patch)
tree8063928909a9b619d6b7a521df3912dcf405087e /svx
parentfcd898c60093eeb5e81f8dc312edc768107c9380 (diff)
sd doc model xml dump: show grab-bag of shape
Which is contained directly for some reason, not inside mpProperties. Change-Id: I0f7d2d5afbeae2d399710d5ce271f3ad4ab9866d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95913 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdobj.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 7b1b5cc5db61..90b41c7d7225 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -1714,6 +1714,11 @@ void SdrObject::dumpAsXml(xmlTextWriterPtr pWriter) const
xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("nOrdNum"), "%" SAL_PRIuUINT32, GetOrdNumDirect());
xmlTextWriterWriteAttribute(pWriter, BAD_CAST("aOutRect"), BAD_CAST(aOutRect.toString().getStr()));
+ if (pGrabBagItem)
+ {
+ pGrabBagItem->dumpAsXml(pWriter);
+ }
+
if (mpProperties)
{
mpProperties->dumpAsXml(pWriter);