diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-01 17:42:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-02 13:31:19 +0200 |
commit | 1927b51993fb68907a75765676179b08ab195196 (patch) | |
tree | 1b7d09c1b5e7ea945fb6ea618a4c100e8630ebb4 /ucbhelper | |
parent | 0dfa444f393a5766d36fe7d2480d0c8ec832e329 (diff) |
loplugin:stringviewparam convert methods using indexOf
.. and lastIndexOf, which convert to find and rfind
Change-Id: I6c4156cf904774c0d867f85a4c2785dba7593f62
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132445
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index 8c95f558f86b..1e2b0adfd2d2 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -136,7 +136,7 @@ class InternetProxyDecider_Impl : mutable HostnameCache m_aHostnames; private: - bool shouldUseProxy( const OUString & rHost, + bool shouldUseProxy( std::u16string_view rHost, sal_Int32 nPort, bool bUseFullyQualified ) const; public: @@ -399,13 +399,13 @@ void InternetProxyDecider_Impl::dispose() } -bool InternetProxyDecider_Impl::shouldUseProxy( const OUString & rHost, +bool InternetProxyDecider_Impl::shouldUseProxy( std::u16string_view rHost, sal_Int32 nPort, bool bUseFullyQualified ) const { OUStringBuffer aBuffer; - if ( ( rHost.indexOf( ':' ) != -1 ) && + if ( ( rHost.find( ':' ) != std::u16string_view::npos ) && ( rHost[ 0 ] != '[' ) ) { // host is given as numeric IPv6 address |