summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-03-27 08:53:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-03-27 11:00:27 +0100
commitb859e9f646b6f023beeca01c59673a7b442e2332 (patch)
tree50ff373ab47571c7b5a848281d755c31876c47a8 /extensions
parentb54f46a848bf54b2bcb9e1dfbb3b3685e67adfd8 (diff)
loplugin:stringconstant (clang-cl)
Change-Id: Ie91c7a6bfc203987e9d3e327a23502cdff46a7a0 Reviewed-on: https://gerrit.libreoffice.org/69791 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/unoobjw.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index 8a9408be3ec2..4f25051ce2af 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -892,7 +892,7 @@ HRESULT STDMETHODCALLTYPE CXTypeInfo::GetDocumentation(MEMBERID memid,
}
else
{
- *pBstrName = SysAllocString(o3tl::toW(OUString(OUString("UnknownNameOfMember#") + OUString::number(memid)).getStr()));
+ *pBstrName = SysAllocString(o3tl::toW(OUString("UnknownNameOfMember#" + OUString::number(memid)).getStr()));
}
}
if (pBstrDocString)