summaryrefslogtreecommitdiff
path: root/unoidl
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-05 20:54:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-06 07:57:13 +0100
commitf0356b6128bb4e78041d53025ad7c2e0b8e0c299 (patch)
treeee2d16dc7f94f814d63675493605e4eb4c3db569 /unoidl
parentad66197f9e18da53afb42042bd0c86e0f3d94675 (diff)
loplugin:stringbuffer
Change-Id: Id6f7268f12eb728dbb255aa19cd590b6813c4f01 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105377 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unoidl')
-rw-r--r--unoidl/source/sourceprovider-parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/unoidl/source/sourceprovider-parser.y b/unoidl/source/sourceprovider-parser.y
index 569f9022b953..b4df765443a5 100644
--- a/unoidl/source/sourceprovider-parser.y
+++ b/unoidl/source/sourceprovider-parser.y
@@ -4029,7 +4029,7 @@ OUString SourceProviderType::getName() const {
case unoidl::detail::SourceProviderType::TYPE_INSTANTIATED_POLYMORPHIC_STRUCT:
{
OUStringBuffer n(512);
- n.append(name + "<");
+ n.append(name).append("<");
for (auto i(subtypes.begin()); i != subtypes.end(); ++i) {
if (i != subtypes.begin()) {
n.append(",");