include/osl/file.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 36b936d05b3ad7ec89f02b1f9587960148781281 Author: Mike Kaganski <[email protected]> AuthorDate: Mon Dec 25 22:28:44 2023 +0600 Commit: Michael Meeks <[email protected]> CommitDate: Thu Dec 28 17:12:17 2023 +0100 Fix SDK build Change-Id: Id94856661d62e718f8368477f6464152f75fde27 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161282 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Michael Meeks <[email protected]> diff --git a/include/osl/file.hxx b/include/osl/file.hxx index 6330247ba818..9424e75a97ed 100644 --- a/include/osl/file.hxx +++ b/include/osl/file.hxx @@ -337,7 +337,7 @@ public: @since LibreOffice 7.7 */ - static void setAllowedPaths(const OUString &rPaths) + static void setAllowedPaths(const ::rtl::OUString& rPaths) { osl_setAllowedPaths(rPaths.pData); } @@ -361,7 +361,7 @@ public: @since LibreOffice 7.7 */ - static bool isForbidden(const OUString &rPath, int nFlags) + static bool isForbidden(const ::rtl::OUString& rPath, int nFlags) { return osl_isForbiddenPath(rPath.pData, nFlags); }
