summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2021-04-20 10:07:19 +0300
committerTor Lillqvist <tml@iki.fi>2021-04-21 09:32:55 +0300
commitc55e29f944d25693c5818917a21909d1d816a570 (patch)
tree7199fe569e51f94d98913017e6e3e3d3ca744455
parent8a45595d069ef5570103caea1b71cc9d82b2aae4 (diff)
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 <tml@collabora.com>
-rw-r--r--sfx2/source/doc/docfile.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index 59865fb2b8eb..c56606a7859e 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<SfxMedium_Impl>
// 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