summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorGökhan Gurbetoğlu <gokhan.gurbetoglu@pardus.org.tr>2016-08-24 14:43:05 +0300
committerNoel Grandin <noelgrandin@gmail.com>2016-08-26 07:15:34 +0000
commit674e0f0b43392a7e7fa515dad8427ccc901f7a01 (patch)
treebc2544d497b2dca7b2f5f8f1fbc704ed5f098b61 /filter
parentea9a90d83d92076d41abfd31a1fd3a5d84b6ba92 (diff)
tdf#100726 - Improve readability of OUString concatanations
Change-Id: I3099818283a9801976288d0efa67a8711106f376 Reviewed-on: https://gerrit.libreoffice.org/28360 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgwriter.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index af83e28ca970..0aaa3050f436 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -1222,8 +1222,7 @@ bool SVGTextWriter::nextTextPortion()
const OUString& rTextPortionId = implGetValidIDFromInterface( Reference<XInterface>(xPortionTextRange, UNO_QUERY) );
if( !rTextPortionId.isEmpty() )
{
- msHyperlinkIdList += rTextPortionId;
- msHyperlinkIdList += " ";
+ msHyperlinkIdList += rTextPortionId + " ";
}
}
}