summaryrefslogtreecommitdiff
path: root/comphelper/source/xml/ofopxmlhelper.cxx
diff options
context:
space:
mode:
authornadith <nadmalinda@gmail.com>2016-07-29 12:22:18 +0530
committerNoel Grandin <noelgrandin@gmail.com>2016-08-01 06:12:30 +0000
commitefef273e2c61b19a63572a71b103e3b1490f15af (patch)
tree1d441e00b15eabd50820cae5e300cc8a6b6bb765 /comphelper/source/xml/ofopxmlhelper.cxx
parentdadb28a2fbe3e50361b60cee9dda43b1fba3629e (diff)
tdf#100726: Improve readability of OUString concatenation
this bug fixed in the modules between canvas - cppu Change-Id: I2022b022897dafde20251352376e3facdb9b8d75 Reviewed-on: https://gerrit.libreoffice.org/27663 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'comphelper/source/xml/ofopxmlhelper.cxx')
-rw-r--r--comphelper/source/xml/ofopxmlhelper.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/comphelper/source/xml/ofopxmlhelper.cxx b/comphelper/source/xml/ofopxmlhelper.cxx
index b50c30ec9daa..02f5815c7901 100644
--- a/comphelper/source/xml/ofopxmlhelper.cxx
+++ b/comphelper/source/xml/ofopxmlhelper.cxx
@@ -98,8 +98,7 @@ uno::Sequence< uno::Sequence< beans::StringPair > > ReadRelationsInfoSequence(
const uno::Reference< uno::XComponentContext >& rContext )
throw( uno::Exception )
{
- OUString aStringID = "_rels/";
- aStringID += aStreamName;
+ OUString aStringID = "_rels/" + aStreamName;
return ReadSequence_Impl( xInStream, aStringID, RELATIONINFO_FORMAT, rContext );
}