From 358be80f65d335910a4add147cd15e35d3505afd Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 14 Mar 2014 07:46:08 +0200 Subject: comphelper,connectivity: prefer passing OUString by reference Change-Id: I19b2613918ec62ee39bb3e447f3587c5dba1e36a --- comphelper/source/container/embeddedobjectcontainer.cxx | 4 ++-- comphelper/source/xml/ofopxmlhelper.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'comphelper') diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx b/comphelper/source/container/embeddedobjectcontainer.cxx index d296c9fa10c2..9ccd567235eb 100644 --- a/comphelper/source/container/embeddedobjectcontainer.cxx +++ b/comphelper/source/container/embeddedobjectcontainer.cxx @@ -52,7 +52,7 @@ namespace comphelper struct hashObjectName_Impl { - size_t operator()(const OUString Str) const + size_t operator()(const OUString & Str) const { return (size_t)Str.hashCode(); } @@ -60,7 +60,7 @@ struct hashObjectName_Impl struct eqObjectName_Impl { - bool operator()(const OUString Str1, const OUString Str2) const + bool operator()(const OUString & Str1, const OUString & Str2) const { return ( Str1 == Str2 ); } diff --git a/comphelper/source/xml/ofopxmlhelper.cxx b/comphelper/source/xml/ofopxmlhelper.cxx index b20d4f2a422b..8a78fcb05a83 100644 --- a/comphelper/source/xml/ofopxmlhelper.cxx +++ b/comphelper/source/xml/ofopxmlhelper.cxx @@ -38,7 +38,7 @@ using namespace ::com::sun::star; namespace comphelper { -uno::Sequence< uno::Sequence< beans::StringPair > > SAL_CALL OFOPXMLHelper::ReadRelationsInfoSequence( const uno::Reference< io::XInputStream >& xInStream, const OUString aStreamName, const uno::Reference< uno::XComponentContext > xContext ) +uno::Sequence< uno::Sequence< beans::StringPair > > SAL_CALL OFOPXMLHelper::ReadRelationsInfoSequence( const uno::Reference< io::XInputStream >& xInStream, const OUString & aStreamName, const uno::Reference< uno::XComponentContext > xContext ) throw( uno::Exception ) { OUString aStringID = "_rels/"; -- cgit v1.2.3