From a73011dfce4790d7648836b31ec7ec60b63fc7eb Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 20 Apr 2021 10:07:19 +0300 Subject: Avoid unused parameter warning in the HAVE_FEATURE_MACOSX_SANDBOX case Change-Id: I7cc2f8f373440ca79694220818558ee092c895a9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114317 Tested-by: Jenkins Reviewed-by: Tor Lillqvist Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114390 Tested-by: Tor Lillqvist --- sfx2/source/doc/docfile.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'sfx2') diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index 631c06bd0713..c4751dc52be9 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -3628,6 +3628,7 @@ OUString GetLogicBase(const INetURLObject& rURL, std::unique_ptr // In a sandboxed environment we don't want to attempt to create temporary files in the same // directory where the user has selected an output file to be stored. The sandboxed process has // permission only to create the specifically named output file in that directory. + (void) rURL; (void) pImpl; #else -- cgit