sfx2/source/doc/docfile.cxx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-)
New commits: commit f40016cd86a3af93d83e3baf0473fa010492f721 Author: Tor Lillqvist <[email protected]> AuthorDate: Mon Nov 16 00:43:37 2020 +0000 Commit: Tor Lillqvist <[email protected]> CommitDate: Mon Nov 16 22:28:54 2020 +0100 Avoid unused parameter 'pImpl' Change-Id: I8dd30ed3ffffa0e5340b32ce4399dd05cc57e2b6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105962 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tor Lillqvist <[email protected]> diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index 81005e08790f..ae24bf153ea2 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -3639,10 +3639,12 @@ OUString GetLogicBase(std::unique_ptr<SfxMedium_Impl> const & pImpl) { OUString aLogicBase; -// 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. -#if !HAVE_FEATURE_MACOSX_SANDBOX +#if HAVE_FEATURE_MACOSX_SANDBOX + // 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) pImpl; +#else if (comphelper::isFileUrl(pImpl->m_aLogicName) && !pImpl->m_pInStream) { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
