diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de (CIB)> | 2018-03-16 18:17:54 +0100 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@cib.de (CIB)> | 2018-03-16 18:17:54 +0100 |
commit | e739d02af4d8cf299753c0884255a63ad5037cf9 (patch) | |
tree | c2fe5250d3915417b9ce67ef2a3420059fd75611 | |
parent | a27e59fac897937f914976a5a563a1c572ccbe44 (diff) |
OperationSmiley: Corrected shadowing of local variables
Change-Id: I7826c7d80ca822cd8211cbf9444f21c3bcfaf6aa
-rw-r--r-- | svx/source/customshapes/EnhancedCustomShapeEngine.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx index 899ea6e03c26..133c008ebc4e 100644 --- a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx @@ -205,10 +205,10 @@ SdrObject* EnhancedCustomShapeEngine::ImplForceGroupWithText( if(bIsSdrObjCustomShape) { - SdrObjCustomShape& rSdrObjCustomShape( + SdrObjCustomShape& rSdrObjCustomShape2( static_cast< SdrObjCustomShape& >( *GetSdrObjectFromXShape(mxShape))); - EnhancedCustomShape2d aCustomShape2d(rSdrObjCustomShape); + EnhancedCustomShape2d aCustomShape2d(rSdrObjCustomShape2); aTextBounds = aCustomShape2d.GetTextRect(); } |