From 1927b51993fb68907a75765676179b08ab195196 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 1 Apr 2022 17:42:34 +0200 Subject: 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 --- ucbhelper/source/client/proxydecider.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ucbhelper') 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 -- cgit