diff options
author | Jan Holesovsky <kendy@collabora.com> | 2017-09-01 18:38:48 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-09-06 14:44:39 +0200 |
commit | 6ac9d6d2a0def5ccc7d8b0d8893c8462f87cb9e5 (patch) | |
tree | fdf2ba27891372ccd90c7ad2eeddf2c5eb444cd2 | |
parent | e824a49a1c12533047d6a5ab8544377e8ff29863 (diff) |
related tdf#111884: GroupShapes are now handled in oox.
Change-Id: Iee960e3d4a5c3dc37fa62b4fec8e52fe7c314ec0
Reviewed-on: https://gerrit.libreoffice.org/41978
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 975a7b2c3e56..e8c3e851b413 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -312,14 +312,7 @@ ShapeExport& PowerPointShapeExport::WriteUnknownShape(const Reference< XShape >& SAL_INFO("sd.eppt", "shape(unknown): " << USS(sShapeType)); - if (sShapeType == "com.sun.star.drawing.GroupShape") - { - Reference< XIndexAccess > rXIndexAccess(xShape, UNO_QUERY); - - mrExport.EnterGroup(rXIndexAccess); - SAL_INFO("sd.eppt", "enter group"); - } - else if (sShapeType == "com.sun.star.presentation.PageShape") + if (sShapeType == "com.sun.star.presentation.PageShape") { WritePageShape(xShape, mePageType, mrExport.GetPresObj()); } |