summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/customshapegeometry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/customshapegeometry.cxx')
-rw-r--r--oox/source/drawingml/customshapegeometry.cxx60
1 files changed, 12 insertions, 48 deletions
diff --git a/oox/source/drawingml/customshapegeometry.cxx b/oox/source/drawingml/customshapegeometry.cxx
index 6875629f87f2..9eabc38637f1 100644
--- a/oox/source/drawingml/customshapegeometry.cxx
+++ b/oox/source/drawingml/customshapegeometry.cxx
@@ -146,76 +146,40 @@ OUString GetFormulaParameter( const EnhancedCustomShapeParameter& rParameter )
}
break;
case EnhancedCustomShapeParameterType::LEFT :
- {
- const OUString sLeft( "left" );
- aRet = sLeft;
- }
+ aRet = "left";
break;
case EnhancedCustomShapeParameterType::TOP :
- {
- const OUString sTop( "top" );
- aRet = sTop;
- }
+ aRet = "top";
break;
case EnhancedCustomShapeParameterType::RIGHT :
- {
- const OUString sRight( "right" );
- aRet = sRight;
- }
+ aRet = "right";
break;
case EnhancedCustomShapeParameterType::BOTTOM :
- {
- const OUString sBottom( "bottom" );
- aRet = sBottom;
- }
+ aRet = "bottom";
break;
case EnhancedCustomShapeParameterType::XSTRETCH :
- {
- const OUString sXStretch( "xstretch" );
- aRet = sXStretch;
- }
+ aRet = "xstretch";
break;
case EnhancedCustomShapeParameterType::YSTRETCH :
- {
- const OUString sYStretch( "ystretch" );
- aRet = sYStretch;
- }
+ aRet = "ystretch";
break;
case EnhancedCustomShapeParameterType::HASSTROKE :
- {
- const OUString sHasStroke( "hasstroke" );
- aRet = sHasStroke;
- }
+ aRet = "hasstroke";
break;
case EnhancedCustomShapeParameterType::HASFILL :
- {
- const OUString sHasFill( "hasfill" );
- aRet = sHasFill;
- }
+ aRet = "hasfill";
break;
case EnhancedCustomShapeParameterType::WIDTH :
- {
- const OUString sWidth( "width" );
- aRet = sWidth;
- }
+ aRet = "width";
break;
case EnhancedCustomShapeParameterType::HEIGHT :
- {
- const OUString sHeight( "height" );
- aRet = sHeight;
- }
+ aRet = "height";
break;
case EnhancedCustomShapeParameterType::LOGWIDTH :
- {
- const OUString sLogWidth( "logwidth" );
- aRet = sLogWidth;
- }
+ aRet = "logwidth";
break;
case EnhancedCustomShapeParameterType::LOGHEIGHT :
- {
- const OUString sLogHeight( "logheight" );
- aRet = sLogHeight;
- }
+ aRet = "logheight";
break;
}
return aRet;