From f9b104abc1185d4f9f3af66f49ec9e39f85a1c36 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 11 Jul 2017 13:49:02 +0200 Subject: simplify some OUString::concat usage Change-Id: Ifa150dc9d694981ffe03c254ea8c3fd820c99795 Reviewed-on: https://gerrit.libreoffice.org/39812 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmloff/source/draw/shapeexport.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'xmloff') diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 1ca5437cdbad..bb55ebe0ec9f 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -2299,8 +2299,7 @@ void XMLShapeExport::ImpExportGraphicObjectShape( sRequestedName = sRequestedName.copy( 0, nLastIndex ); if ( !sRequestedName.isEmpty() ) { - aResolveURL = aResolveURL.concat( "?requestedName="); - aResolveURL = aResolveURL.concat( sRequestedName ); + aResolveURL += "?requestedName=" + sRequestedName; } } @@ -2315,11 +2314,11 @@ void XMLShapeExport::ImpExportGraphicObjectShape( aStreamURL = sPackageURL; if ( aStr[0] == '#' ) { - aStreamURL = aStreamURL.concat( aStr.copy( 1, aStr.getLength() - 1 ) ); + aStreamURL += aStr.copy( 1, aStr.getLength() - 1 ); } else { - aStreamURL = aStreamURL.concat( aStr ); + aStreamURL += aStr; } xPropSet->setPropertyValue( "GraphicStreamURL", uno::Any(aStreamURL) ); -- cgit