diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-28 14:12:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-29 08:53:22 +0200 |
commit | d3849255b76e92a42f653c266b88945708984c4f (patch) | |
tree | ff1eab21b9e5a1ea00e1573db4b4595ba51b0098 /sw/qa/unit | |
parent | f9b6bd6336b35de060f6f5bdd91517caf5e9a56e (diff) |
use more string_view in INetURLObject
Change-Id: I4462f7cf4740fa4d1b129d76a0775f4250f41bbd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133555
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/qa/unit')
-rw-r--r-- | sw/qa/unit/uibase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/unit/uibase.cxx b/sw/qa/unit/uibase.cxx index 188916da35a2..519510977ce6 100644 --- a/sw/qa/unit/uibase.cxx +++ b/sw/qa/unit/uibase.cxx @@ -31,7 +31,7 @@ public: void Test::testTdf98168() { - INetURLObject aURL("file:///tmp/test.xlsx"); + INetURLObject aURL(u"file:///tmp/test.xlsx"); // This was sw::DBConnURIType::UNKNOWN, xlsx was not recognized. CPPUNIT_ASSERT_EQUAL(sw::DBConnURIType::CALC, sw::GetDBunoType(aURL)); } |