diff options
Diffstat (limited to 'sfx2/source/doc')
-rw-r--r-- | sfx2/source/doc/docfile.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index fbff6954e5c8..705d44244f83 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -926,11 +926,12 @@ namespace { INetURLObject aUrl( rLogicName ); INetProtocol eProt = aUrl.GetProtocol(); -#if HAVE_FEATURE_MACOSX_SANDBOX - return eProt == INetProtocol::Sftp; -#else - return eProt == INetProtocol::File || eProt == INetProtocol::Sftp; +#if !HAVE_FEATURE_MACOSX_SANDBOX + if (eProt == INetProtocol::File) { + return true; + } #endif + return eProt == INetProtocol::Smb || eProt == INetProtocol::Sftp; } } |