diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2023-11-07 13:20:21 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2023-11-09 16:53:41 +0100 |
commit | b91daea3c1a38883c06cdd63c6eababe1df9e61d (patch) | |
tree | 1aa11bf15dcacf9b877b7bd165ce7bb9aa20e3f4 /extensions/source/update | |
parent | 7e5630b7b09f605aaba6ea8f54ff4c3761fe63db (diff) |
tdf#146386 fpicker,svtools: remove FTP from Remote Files dialog
Change-Id: I76ba8e275033c4d0a3c04964828dc640827cb7cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159073
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'extensions/source/update')
-rw-r--r-- | extensions/source/update/check/download.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/extensions/source/update/check/download.cxx b/extensions/source/update/check/download.cxx index 2124ee5a0512..9b4823777289 100644 --- a/extensions/source/update/check/download.cxx +++ b/extensions/source/update/check/download.cxx @@ -203,11 +203,6 @@ Download::getProxyForURL(std::u16string_view rURL, OString& rHost, sal_Int32& rP rHost = getStringValue(xNameAccess, "ooInetHTTPSProxyName"); rPort = getInt32Value(xNameAccess, "ooInetHTTPSProxyPort"); } - else if( o3tl::starts_with(rURL, u"ftp:") ) - { - rHost = getStringValue(xNameAccess, "ooInetFTPProxyName"); - rPort = getInt32Value(xNameAccess, "ooInetFTPProxyPort"); - } } } |