diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-26 22:21:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-26 22:21:22 +0100 |
commit | e97edb6e85a8e272b003e2b07a68d49abf7dd750 (patch) | |
tree | 1ef1dc2e24e5e71cc95409cb490b01002dbc1043 /xmloff/source/draw/shapeexport.cxx | |
parent | 76b76049e57319a772b863519d8bbc57460eb6f4 (diff) |
simplify
Change-Id: I6cb7c66a8dbac1a887d4f218f5de9d73310c809b
Diffstat (limited to 'xmloff/source/draw/shapeexport.cxx')
-rw-r--r-- | xmloff/source/draw/shapeexport.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index f0a8db4bf466..6ad5b615a964 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -2448,13 +2448,12 @@ void XMLShapeExport::ImpExportConnectorShape( nDelta1); if( nDelta2 != 0 || nDelta3 != 0 ) { - const char aSpace = ' '; - sStringBuffer.appendAscii( &aSpace, 1 ); + sStringBuffer.append( ' ' ); mrExport.GetMM100UnitConverter().convertMeasureToXML(sStringBuffer, nDelta2); if( nDelta3 != 0 ) { - sStringBuffer.appendAscii( &aSpace, 1 ); + sStringBuffer.append( ' ' ); mrExport.GetMM100UnitConverter().convertMeasureToXML( sStringBuffer, nDelta3); } |