diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-11-11 09:58:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-11-11 12:37:35 +0100 |
commit | 3d3180115be3b87e76189aea2031f0caa735dbb3 (patch) | |
tree | dce74b6bac96c020617e67cd63cc69d001bb50c0 /ucbhelper | |
parent | 93c64a61f2c84e684050294a1391cd32425b7837 (diff) |
Drop some unused function parameters
Change-Id: I41ad8001e78ea82bf4d893b5faaa28400ff6efcf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105575
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index 8bb610a64335..34ea7385139e 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -575,9 +575,7 @@ InternetProxyServer GetPACProxy(const OUString& rProtocol, const OUString& rHost // Read the settings from the OS which are stored in env vars // -InternetProxyServer GetUnixSystemProxy(const OUString & rProtocol, - const OUString & /*rHost*/, - sal_Int32 /*nPort*/) +InternetProxyServer GetUnixSystemProxy(const OUString & rProtocol) { // TODO this could be improved to read the "no_proxy" env variable InternetProxyServer aProxy; @@ -624,7 +622,7 @@ InternetProxyServer InternetProxyDecider_Impl::getProxy( #ifdef _WIN32 InternetProxyServer aProxy(GetPACProxy(rProtocol, rHost, nPort)); #else - InternetProxyServer aProxy(GetUnixSystemProxy(rProtocol, rHost, nPort)); + InternetProxyServer aProxy(GetUnixSystemProxy(rProtocol)); #endif // _WIN32 if (!aProxy.aName.isEmpty()) return aProxy; |