summaryrefslogtreecommitdiff
path: root/svx
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-17 23:15:50 +0100
commit22bb8b0dfc0765f613d46ba8893f721598df89d9 (patch)
tree8ea4416445cf2047116341910c5fa4da1a9633d7 /svx
parent3b4c64efa7f0aea5bc7619726fd3f7efbf2ceb1c (diff)
OperationSmiley: Corrected shadowing of local variables
Change-Id: I7826c7d80ca822cd8211cbf9444f21c3bcfaf6aa
Diffstat (limited to 'svx')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeEngine.cxx4
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();
}