summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-03-11 19:18:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-03-12 08:41:25 +0100
commita378ac93e1b4e3c0dacdd3f0a3500813714537c7 (patch)
tree30849c2c79dbcea8bc2b7cca66ac5307cddcc707 /include/tools
parent6fb716d58c1285a1abbfa6683c2f4bfaeb89e2c6 (diff)
tdf#147921 Filesave DOC: wrong layout and then all missing from 7.3
regression from commit 990b2cb056788f7f412656a303456d90c003cf83 Author: Noel Grandin <noel@peralex.com> Date: Mon Jun 21 13:00:07 2021 +0200 simplify and improve Wildcard Cannot pass a string_view into something expecting a char* because then it gets the length wrong. Change-Id: I638660a1e9a8a0d17e4d2f77500b3f01365a43d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131396 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/wldcrd.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/wldcrd.hxx b/include/tools/wldcrd.hxx
index fdbefcc4d2ea..5c18ad20fc68 100644
--- a/include/tools/wldcrd.hxx
+++ b/include/tools/wldcrd.hxx
@@ -32,7 +32,7 @@ private:
OUString aWildString;
char cSepSymbol;
- static bool ImpMatch( const sal_Unicode *pWild, const sal_Unicode *pStr );
+ static bool ImpMatch( std::u16string_view aWild, std::u16string_view aStr );
public:
WildCard()