summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/string.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-04-29 12:33:18 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-04-30 10:40:14 +0200
commit10d2f2ebf13801feca8d14ecce96f7f5239409c2 (patch)
treef8e95d0a933128e0d8da0a5d823b6a7cbb6703f2 /comphelper/source/misc/string.cxx
parent41e5b9d32f8914e3f0159f064e46c362d55b6ccd (diff)
loplugin:ostr in comphelper
Change-Id: Ide07689bf1a68973cb176554e44e9a809d633def Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166851 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper/source/misc/string.cxx')
-rw-r--r--comphelper/source/misc/string.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/string.cxx b/comphelper/source/misc/string.cxx
index 446e500e0250..8b72ad5f34a5 100644
--- a/comphelper/source/misc/string.cxx
+++ b/comphelper/source/misc/string.cxx
@@ -368,7 +368,7 @@ OUString convertCommaSeparated(
{
OUStringBuffer buf;
::comphelper::intersperse(
- i_rSeq.begin(), i_rSeq.end(), ::comphelper::OUStringBufferAppender(buf), OUString( ", " ));
+ i_rSeq.begin(), i_rSeq.end(), ::comphelper::OUStringBufferAppender(buf), u", "_ustr);
return buf.makeStringAndClear();
}