diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-18 10:10:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-24 09:45:04 +0100 |
commit | bb06f51308428500c9c8d11ae05f0aa03ecc179c (patch) | |
tree | b18620e8572ed6d4c43c8605660d59f5f7a7e531 /ucbhelper/source | |
parent | 42e8e16cf93dcf944e5c1106f76aaa32057c0397 (diff) |
loplugin:stringviewparam extend to comparison operators
which means that some call sites have to change to use
unicode string literals i.e. u"foo" instead of "foo"
Change-Id: Ie51c3adf56d343dd1d1710777f9d2a43ee66221c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106125
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucbhelper/source')
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 2 | ||||
-rw-r--r-- | ucbhelper/source/provider/contentinfo.cxx | 4 | ||||
-rw-r--r-- | ucbhelper/source/provider/contentinfo.hxx | 4 | ||||
-rw-r--r-- | ucbhelper/source/provider/resultset.cxx | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index 34ea7385139e..3052cd34003e 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -92,7 +92,7 @@ class HostnameCache std::deque< HostListEntry > m_aHostList; public: - bool get( const OUString & rKey, OUString & rValue ) const + bool get( std::u16string_view rKey, OUString & rValue ) const { for (auto const& host : m_aHostList) { diff --git a/ucbhelper/source/provider/contentinfo.cxx b/ucbhelper/source/provider/contentinfo.cxx index 85b3b6c741e3..820fb021d9b2 100644 --- a/ucbhelper/source/provider/contentinfo.cxx +++ b/ucbhelper/source/provider/contentinfo.cxx @@ -151,7 +151,7 @@ void PropertySetInfo::reset() bool PropertySetInfo::queryProperty( - const OUString& rName, beans::Property& rProp ) + std::u16string_view rName, beans::Property& rProp ) { osl::MutexGuard aGuard( m_aMutex ); @@ -280,7 +280,7 @@ void CommandProcessorInfo::reset() bool CommandProcessorInfo::queryCommand( - const OUString& rName, + std::u16string_view rName, css::ucb::CommandInfo& rCommand ) { osl::MutexGuard aGuard( m_aMutex ); diff --git a/ucbhelper/source/provider/contentinfo.hxx b/ucbhelper/source/provider/contentinfo.hxx index 01d10e07545f..22591c8bc360 100644 --- a/ucbhelper/source/provider/contentinfo.hxx +++ b/ucbhelper/source/provider/contentinfo.hxx @@ -54,7 +54,7 @@ class PropertySetInfo : ContentImplHelper* m_pContent; private: - bool queryProperty( const OUString& rName, + bool queryProperty( std::u16string_view rName, css::beans::Property& rProp ); public: @@ -94,7 +94,7 @@ class CommandProcessorInfo : ContentImplHelper* m_pContent; private: - bool queryCommand( const OUString& rName, + bool queryCommand( std::u16string_view rName, css::ucb::CommandInfo& rCommand ); bool queryCommand( sal_Int32 nHandle, css::ucb::CommandInfo& rCommand ); diff --git a/ucbhelper/source/provider/resultset.cxx b/ucbhelper/source/provider/resultset.cxx index 6d6fd5ee09b3..f954ad8e99e8 100644 --- a/ucbhelper/source/provider/resultset.cxx +++ b/ucbhelper/source/provider/resultset.cxx @@ -94,7 +94,7 @@ class PropertySetInfo : private: bool queryProperty( - const OUString& aName, beans::Property& rProp ) const; + std::u16string_view aName, beans::Property& rProp ) const; public: PropertySetInfo( @@ -1488,7 +1488,7 @@ sal_Bool SAL_CALL PropertySetInfo::hasPropertyByName( bool PropertySetInfo::queryProperty( - const OUString& aName, beans::Property& rProp ) const + std::u16string_view aName, beans::Property& rProp ) const { sal_Int32 nCount = m_pProps->getLength(); const beans::Property* pProps = m_pProps->getConstArray(); |