From 999df3e27d6ab582a67bd7c47a6e4ebb123bdcf3 Mon Sep 17 00:00:00 2001 From: Paul Trojahn Date: Sat, 23 Sep 2017 15:17:13 +0200 Subject: PPTX Fix export of rotated group shapes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Tamás Zolnai (cherry picked from commit 465092047d5fa6ec6dd369372e712d76554570ff) Change-Id: Ic564cbcf31a81a248878f0179fdd21144f076b61 (cherry picked from commit b24c5ad7997de08b9da0c928f87df922b9f9797d) --- oox/source/export/shapes.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oox') 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& // 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 xGroupShape(xShape, uno::UNO_QUERY_THROW); -- cgit