diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-01 20:34:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-03 09:12:32 +0200 |
commit | ddef1e2c017b7d8e421dedc1a0ce722ff4208985 (patch) | |
tree | 54e52c86e4e33bcb61eee44706117b1616e99624 /testtools | |
parent | 0a6d946694e4fcb39228c5e1fec58fcfd8a45989 (diff) |
add o3tl::equalsAscii
Change-Id: I042b8dcadbf7581de325c161763fe35aecde5ca2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133694
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/bridgetest.cxx | 3 | ||||
-rw-r--r-- | testtools/source/bridgetest/cppobj.cxx | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/testtools/source/bridgetest/bridgetest.cxx b/testtools/source/bridgetest/bridgetest.cxx index 2a5ac183ef66..78bcdc6f0d3a 100644 --- a/testtools/source/bridgetest/bridgetest.cxx +++ b/testtools/source/bridgetest/bridgetest.cxx @@ -24,6 +24,7 @@ #include <string_view> #include <o3tl/any.hxx> +#include <o3tl/string_view.hxx> #include <osl/diagnose.h> #include <osl/diagnose.hxx> #include <sal/types.h> @@ -1313,7 +1314,7 @@ SAL_DLLPUBLIC_EXPORT void * component_getFactory( { void * pRet = nullptr; - if (pServiceManager && OUString(IMPLNAME).equalsAscii(pImplName)) + if (pServiceManager && o3tl::equalsAscii(IMPLNAME, pImplName)) { Reference< XInterface > xFactory( createSingleComponentFactory( diff --git a/testtools/source/bridgetest/cppobj.cxx b/testtools/source/bridgetest/cppobj.cxx index 7529144beb55..5bb4a3084ad8 100644 --- a/testtools/source/bridgetest/cppobj.cxx +++ b/testtools/source/bridgetest/cppobj.cxx @@ -20,6 +20,7 @@ #include <utility> #include <cppu/unotype.hxx> +#include <o3tl/string_view.hxx> #include <osl/diagnose.h> #include <osl/diagnose.hxx> #include <osl/thread.hxx> @@ -1197,7 +1198,7 @@ SAL_DLLPUBLIC_EXPORT void * component_getFactory( { void * pRet = nullptr; - if (pServiceManager && OUString(IMPLNAME).equalsAscii(pImplName)) + if (pServiceManager && o3tl::equalsAscii(IMPLNAME, pImplName)) { Reference< XSingleServiceFactory > xFactory( createSingleFactory( static_cast< XMultiServiceFactory * >( pServiceManager ), |