summaryrefslogtreecommitdiffstats
path: root/oox
diff options
context:
space:
mode:
authorPaul Trojahn <paul.trojahn@gmail.com>2017-09-23 15:17:13 +0200
committerAron Budea <aron.budea@collabora.com>2018-02-09 20:21:42 +0100
commitb24c5ad7997de08b9da0c928f87df922b9f9797d (patch)
treef849f23f612b0f716a35027d2f8f2f16c7a6ffa6 /oox
parent-Werror=int-in-bool-context (GCC 7) (diff)
downloadcore-b24c5ad7997de08b9da0c928f87df922b9f9797d.tar.gz
core-b24c5ad7997de08b9da0c928f87df922b9f9797d.zip
PPTX Fix export of rotated group shapes
The rotation is already applied to the child shapes and must not be added to the group. Reviewed-on: https://gerrit.libreoffice.org/42765 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> (cherry picked from commit 465092047d5fa6ec6dd369372e712d76554570ff) Change-Id: Ic564cbcf31a81a248878f0179fdd21144f076b61
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/shapes.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx
index 871873c968b1..05502d693722 100644
--- a/oox/source/export/shapes.cxx
+++ b/oox/source/export/shapes.cxx
@@ -525,7 +525,7 @@ ShapeExport& ShapeExport::WriteGroupShape(const uno::Reference<drawing::XShape>&
// visual properties
pFS->startElementNS(mnXmlNamespace, XML_grpSpPr, FSEND);
- WriteShapeTransformation(xShape, XML_a);
+ WriteShapeTransformation(xShape, XML_a, false, false, true);
pFS->endElementNS(mnXmlNamespace, XML_grpSpPr);
uno::Reference<drawing::XShapes> xGroupShape(xShape, uno::UNO_QUERY_THROW);