svx/source/svdraw/svdobj.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit 30bd183978bb12ade1be2ea948febafd14fb4440
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Tue Jun 9 13:43:19 2020 +0200
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Fri Jun 26 08:54:01 2020 +0200

    sd doc model xml dump: show grab-bag of shape
    
    Which is contained directly for some reason, not inside mpProperties.
    
    (cherry picked from commit 93f2cb69575df5b4a9e2c509ee2b691dc013045d)
    
    Change-Id: I0f7d2d5afbeae2d399710d5ce271f3ad4ab9866d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97176
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Miklos Vajna <vmik...@collabora.com>

diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index eaa5abfa177a..51209c92ef43 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -1741,6 +1741,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);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to