summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-03-11 19:18:25 +0200
committerAndras Timar <andras.timar@collabora.com>2022-03-22 10:30:10 +0100
commit8cdce6fa83802c83474a29443b285feee4838ab6 (patch)
tree524da21958f16533da5f50732757836098ac4e90 /include
parent9ae4e939ddf1dd7592c52a3f2af77275da5d423d (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> (cherry picked from commit a378ac93e1b4e3c0dacdd3f0a3500813714537c7) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131595 Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'include')
-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 dfb1e9d87bc3..41288f1246b2 100644
--- a/include/tools/wldcrd.hxx
+++ b/include/tools/wldcrd.hxx
@@ -33,7 +33,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()