[Libreoffice-commits] core.git: svx/source
Miklos Vajna (via logerrit)
logerrit at kemper.freedesktop.org
Tue Jun 9 19:23:55 UTC 2020
svx/source/svdraw/svdobj.cxx | 5 +++++
1 file changed, 5 insertions(+)
New commits:
commit 93f2cb69575df5b4a9e2c509ee2b691dc013045d
Author: Miklos Vajna <vmiklos at collabora.com>
AuthorDate: Tue Jun 9 13:43:19 2020 +0200
Commit: Miklos Vajna <vmiklos at collabora.com>
CommitDate: Tue Jun 9 21:23:19 2020 +0200
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 at collabora.com>
Tested-by: Jenkins
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);
More information about the Libreoffice-commits
mailing list