diff options
author | Radek Doulik <rodo@novell.com> | 2012-08-15 13:33:21 +0200 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2012-08-15 13:33:21 +0200 |
commit | 57e8f53e4f6ecfbedef4d2922935a7f7b2f467b3 (patch) | |
tree | 09f8fc60b34e923f532f1dbf70225f9ca4bedd78 /oox/source | |
parent | c3f9eb1c81319dd4a6138a1a2b4fc21bafd942cb (diff) |
call WriteTransformation with namespace id, fixes part of fdo#41992
Change-Id: Ifb4a78bfc3c47788503da5b7d74f356343a7cbf8
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/export/shapes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx index e84e5aafc533..7a401b6d18bb 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -948,7 +948,7 @@ ShapeExport& ShapeExport::WriteConnectorShape( Reference< XShape > xShape ) // visual shape properties pFS->startElementNS( mnXmlNamespace, XML_spPr, FSEND ); - WriteTransformation( aRect, bFlipH, bFlipV ); + WriteTransformation( aRect, mnXmlNamespace, bFlipH, bFlipV ); // TODO: write adjustments (ppt export doesn't work well there either) WritePresetShape( sGeometry ); Reference< XPropertySet > xShapeProps( xShape, UNO_QUERY ); |