summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/lineproperties.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/lineproperties.cxx')
-rw-r--r--oox/source/drawingml/lineproperties.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/lineproperties.cxx b/oox/source/drawingml/lineproperties.cxx
index 8e9d676de800..898b5b702161 100644
--- a/oox/source/drawingml/lineproperties.cxx
+++ b/oox/source/drawingml/lineproperties.cxx
@@ -277,11 +277,11 @@ void lclPushMarkerProperties( ShapePropertyMap& rPropMap,
sal_Int32 nWidth = lclGetArrowSize( rArrowProps.moArrowWidth.value_or( XML_med ) );
sal_Int32 nNameIndex = nWidth * 3 + nLength + 1;
- aBuffer.append( ' ' ).append( nNameIndex );
+ aBuffer.append( " " + OUString::number( nNameIndex ));
if (bIsArrow)
{
// Arrow marker form depends also on line width
- aBuffer.append(' ').append(nLineWidth);
+ aBuffer.append(" " + OUString::number(nLineWidth));
}
OUString aMarkerName = aBuffer.makeStringAndClear();