diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:50:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:50:10 +0200 |
commit | df2750d8aa6c82d072ddfad359dce18b5a743c9d (patch) | |
tree | e62fad908f692f189e55b15b289d82cde743ad8b /oox/source | |
parent | cde4d4a208ea8e19d13385efbcedfc0f65f74ac0 (diff) |
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: Ic92c92704e04ce868717a8fabf9919adbf27a54a
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/export/drawingml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index e504113845be..4d4c8c790196 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -1150,7 +1150,7 @@ void DrawingML::WriteShapeTransformation( Reference< XShape > rXShape, sal_Int32 aSize.Height = 1000; if (!bSuppressRotation) { - SdrObject* pShape = (SdrObject*) GetSdrObjectFromXShape( rXShape ); + SdrObject* pShape = GetSdrObjectFromXShape( rXShape ); nRotation = pShape ? pShape->GetRotateAngle() : 0; if (nRotation != 0 && nRotation != 18000) { |