diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-12-09 08:22:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-12-09 09:33:43 +0100 |
commit | d78e5d2e334de0441451b2558966fd4c42170561 (patch) | |
tree | 1698509a25142d493e2319b2bb1c9089145b6c13 /extensions | |
parent | ff2a8e6c28650cdd361fa99e6e5d4782ad56c330 (diff) |
loplugin:stringview (clang-cl)
Change-Id: I02c13286f9e76431e7b6b11c48225006c57de6fd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107452
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 87b00e340bde..ad411479401b 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -1265,7 +1265,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP InterfaceOleWrapper::GetIDsOfNames(REFIID /*ri bool bFound = false; for (int j = 0; j < aParamInfos.getLength(); ++j) { - if (aParamInfos[j].aName.equalsIgnoreAsciiCase(OUString(o3tl::toU(rgszNames[i])))) + if (aParamInfos[j].aName.equalsIgnoreAsciiCase(o3tl::toU(rgszNames[i]))) { rgdispid[i] = j; bFound = true; |