summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-04-11 10:27:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-04-11 13:29:45 +0200
commitdd41ea3ec1f579fabb9f674184b52c1be77e2fdb (patch)
tree8663849aef8eaecbbd0f007a50a30c1aa71e9a9e /cppuhelper
parentc0e82975c21d702f962784ee5ddb7435e6d7c922 (diff)
fix for o3tl::equalsAscii
from commit d15a6560bd445cd1931e9fded6ad8ecfdd54211b use more string_view where the new method was named incorrectly Change-Id: Ia4513fa67f5bda8b6cb56e3db22df48b5e3c7283 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150217 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/shlib.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index b270c62c5cb4..b49c5eebfc15 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -57,7 +57,7 @@ css::uno::Environment cppuhelper::detail::getEnvironment(
for (sal_Int32 i = 0; i != -1;) {
std::string_view imp(o3tl::getToken(imps, 0, ';', i));
//TODO: this assumes UNO_ENV_LOG only contains ASCII characters:
- if (o3tl::equalsAscii(implementation, imp))
+ if (o3tl::equalsAsciiL(implementation, imp))
{
n += ":log";
break;