summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-11 13:49:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-11 21:42:16 +0200
commitf9b104abc1185d4f9f3af66f49ec9e39f85a1c36 (patch)
tree972b288a471d03dded89e7d55040eef0ac65d2ee /oox
parent36e92f38c98e5cb21aecf07434df34b3ad75272a (diff)
simplify some OUString::concat usage
Change-Id: Ifa150dc9d694981ffe03c254ea8c3fd820c99795 Reviewed-on: https://gerrit.libreoffice.org/39812 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/hyperlinkcontext.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/drawingml/hyperlinkcontext.cxx b/oox/source/drawingml/hyperlinkcontext.cxx
index 055e1cfb7785..99cca512831c 100644
--- a/oox/source/drawingml/hyperlinkcontext.cxx
+++ b/oox/source/drawingml/hyperlinkcontext.cxx
@@ -94,8 +94,7 @@ HyperLinkContext::HyperLinkContext( ContextHandler2Helper& rParent,
if ( aPPAct.match( sJump, nIndex + 1 ) )
{
OUString aDestination( aPPAct.copy( nIndex + 1 + sJump.getLength() ) );
- sURL = sURL.concat( "#action?jump=" );
- sURL = sURL.concat( aDestination );
+ sURL += "#action?jump=" + aDestination;
}
}
else if ( aPPAction.match( sHlinksldjump ) )