summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-04-18 21:12:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-04-19 12:11:43 +0200
commitc7428c607c021f361973f0b1fd9e0dcaf45fa932 (patch)
tree790100c5dddb7aeb8c75b49c2eee0f2c31329a8d /sal
parent65834914dbc79ab2f4095bf7a47a78f4145afa62 (diff)
use more string_view in OString API
some parts of the OString seem to have fallen behind its more popular sibling OUString. Change-Id: Ie6d64c3005b2df5da49ba79d0c38282dd5057a23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114252 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/rtl/strings/test_ostring.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/qa/rtl/strings/test_ostring.cxx b/sal/qa/rtl/strings/test_ostring.cxx
index 0d0d07be70ea..b4fb201cafa3 100644
--- a/sal/qa/rtl/strings/test_ostring.cxx
+++ b/sal/qa/rtl/strings/test_ostring.cxx
@@ -32,12 +32,12 @@ private:
void Test::testStartsWithIgnoreAsciiCase() {
{
OString r;
- CPPUNIT_ASSERT(OString().startsWithIgnoreAsciiCase(OString(), &r));
+ CPPUNIT_ASSERT(OString().startsWithIgnoreAsciiCase(std::string_view(), &r));
CPPUNIT_ASSERT(r.isEmpty());
}
{
OString r;
- CPPUNIT_ASSERT(OString("foo").startsWithIgnoreAsciiCase(OString(), &r));
+ CPPUNIT_ASSERT(OString("foo").startsWithIgnoreAsciiCase(std::string_view(), &r));
CPPUNIT_ASSERT_EQUAL(OString("foo"), r);
}
{