summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Le Grand <Armin.Le.Grand@cib.de (CIB)>2018-03-16 18:17:54 +0100
committerArmin Le Grand <Armin.Le.Grand@cib.de (CIB)>2018-03-16 20:15:29 +0100
commit75a376b9b1bd784ed16bba5b3a0842097dfae6e8 (patch)
treea2108265de539b6e855ca1f97b866ca50dc91afe
parente739d02af4d8cf299753c0884255a63ad5037cf9 (diff)
OperationSmiley: Corrected shadowing of local variables
Change-Id: I7826c7d80ca822cd8211cbf9444f21c3bcfaf6aa
-rw-r--r--svx/source/customshapes/EnhancedCustomShape2d.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShape2d.cxx b/svx/source/customshapes/EnhancedCustomShape2d.cxx
index 17fe098ff3fe..5ed79db32897 100644
--- a/svx/source/customshapes/EnhancedCustomShape2d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape2d.cxx
@@ -746,7 +746,7 @@ EnhancedCustomShape2d::EnhancedCustomShape2d(SdrObjCustomShape& rSdrObjCustomSha
if ( pAny )
*pAny >>= bFlipV;
- nRotateAngle = static_cast<sal_Int32>(static_cast< SdrObjCustomShape& >(mrSdrObjCustomShape).GetObjectRotation() * 100.0);
+ nRotateAngle = static_cast<sal_Int32>(mrSdrObjCustomShape.GetObjectRotation() * 100.0);
/*const sal_Int32* pDefData =*/ ApplyShapeAttributes( rGeometryItem );
SetPathSize();