diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-06-13 11:46:47 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-06-13 11:55:23 +0200 |
commit | 2181f936c88811d5b6eb6081355a99a727261a8f (patch) | |
tree | dabc4bb9907a9a74afb164c140515d113224fbab /oox | |
parent | 98a1065499edfe595f479e4fab41c0183fc5d5d2 (diff) |
no need to check for pShape here
Change-Id: I6de2da7d2f17a14ddbe7e70651a416a01f49164b
Diffstat (limited to 'oox')
-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 7db7c5858673..158de6bdfe22 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -512,7 +512,7 @@ ShapeExport& ShapeExport::WriteCustomShape( Reference< XShape > xShape ) { WritePolyPolygon( tools::PolyPolygon( pShape->GetLineGeometry(true) ) ); } - else if (bCustGeom && pShape) + else if (bCustGeom) { WriteCustomGeometry( xShape ); } |