include/osl/file.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit f04d38d5a88f422b80d2a37d1a1252ce59c4f892 Author: Mike Kaganski <mike.kagan...@collabora.com> AuthorDate: Mon Dec 25 22:28:44 2023 +0600 Commit: Mike Kaganski <mike.kagan...@collabora.com> CommitDate: Wed Feb 26 15:43:44 2025 +0100 Fix SDK build Change-Id: Id94856661d62e718f8368477f6464152f75fde27 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161282 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-by: Michael Meeks <michael.me...@collabora.com> (cherry picked from commit 36b936d05b3ad7ec89f02b1f9587960148781281) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182234 Tested-by: Mike Kaganski <mike.kagan...@collabora.com> Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com> diff --git a/include/osl/file.hxx b/include/osl/file.hxx index 1c3684f4a68d..787da4f98f31 100644 --- a/include/osl/file.hxx +++ b/include/osl/file.hxx @@ -336,7 +336,7 @@ public: @since LibreOffice 7.7 */ - static void setAllowedPaths(const OUString &rPaths) + static void setAllowedPaths(const ::rtl::OUString& rPaths) { osl_setAllowedPaths(rPaths.pData); } @@ -360,7 +360,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); }