summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-01 18:25:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-02 08:47:24 +0200
commit366eaa1a383a0f5f3f755f2b6a739d3d9c5b8343 (patch)
tree0b7b4876a3e35d40a75818593214df7717e5f3b5 /writerperfect
parent91c836acea76cffb0e2d5df0d15fc94d84bfdc5a (diff)
loplugin:stringadd in writerfilter..xmloff
Change-Id: Ib5292f4c702cc1e2994c736250a93e6fb18d1a20 Reviewed-on: https://gerrit.libreoffice.org/79988 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/writer/exp/XMLBase64ImportContext.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/writerperfect/source/writer/exp/XMLBase64ImportContext.cxx b/writerperfect/source/writer/exp/XMLBase64ImportContext.cxx
index 0835bc20e0ad..abae977a6389 100644
--- a/writerperfect/source/writer/exp/XMLBase64ImportContext.cxx
+++ b/writerperfect/source/writer/exp/XMLBase64ImportContext.cxx
@@ -43,8 +43,7 @@ void XMLBase64ImportContext::characters(const OUString& rChars)
OUString aChars;
if (!m_aBase64CharsLeft.isEmpty())
{
- aChars = m_aBase64CharsLeft;
- aChars += aTrimmedChars;
+ aChars = m_aBase64CharsLeft + aTrimmedChars;
m_aBase64CharsLeft.clear();
}
else