diff options
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/hyperlinkcontext.cxx | 3 |
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 ) ) |