summaryrefslogtreecommitdiff
path: root/svx/source/customshapes/EnhancedCustomShape2d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/customshapes/EnhancedCustomShape2d.cxx')
-rw-r--r--svx/source/customshapes/EnhancedCustomShape2d.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShape2d.cxx b/svx/source/customshapes/EnhancedCustomShape2d.cxx
index c6bc3971ec7f..6ec8a724cbb8 100644
--- a/svx/source/customshapes/EnhancedCustomShape2d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape2d.cxx
@@ -328,7 +328,7 @@ void EnhancedCustomShape2d::AppendEnhancedCustomShapeEquationParameter( OUString
if ( nPara & 0x400 )
{
rParameter += "?";
- rParameter += OUString::valueOf( (sal_Int32)( nPara & 0xff ) );
+ rParameter += OUString::number( ( nPara & 0xff ) );
rParameter += " ";
}
else
@@ -347,7 +347,7 @@ void EnhancedCustomShape2d::AppendEnhancedCustomShapeEquationParameter( OUString
case DFF_Prop_adjust10Value :
{
rParameter += "$";
- rParameter += OUString::valueOf( (sal_Int32)( nPara - DFF_Prop_adjustValue ) );
+ rParameter += OUString::number( ( nPara - DFF_Prop_adjustValue ) );
rParameter += " ";
}
break;
@@ -376,7 +376,7 @@ void EnhancedCustomShape2d::AppendEnhancedCustomShapeEquationParameter( OUString
}
else
{
- rParameter += OUString::valueOf( (sal_Int32)( nPara ) );
+ rParameter += OUString::number( ( nPara ) );
}
}