diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-14 07:46:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-14 07:47:01 +0200 |
commit | 358be80f65d335910a4add147cd15e35d3505afd (patch) | |
tree | c74c7246273506642e2514648e5b9cc58b4ccf74 /include/connectivity | |
parent | eb4fb12fdbe14b929cf8fe5d5785fcfae8d96fa4 (diff) |
comphelper,connectivity: prefer passing OUString by reference
Change-Id: I19b2613918ec62ee39bb3e447f3587c5dba1e36a
Diffstat (limited to 'include/connectivity')
-rw-r--r-- | include/connectivity/TColumnsHelper.hxx | 2 | ||||
-rw-r--r-- | include/connectivity/TIndexes.hxx | 2 | ||||
-rw-r--r-- | include/connectivity/TKeys.hxx | 2 | ||||
-rw-r--r-- | include/connectivity/sdbcx/VCollection.hxx | 8 |
4 files changed, 7 insertions, 7 deletions
diff --git a/include/connectivity/TColumnsHelper.hxx b/include/connectivity/TColumnsHelper.hxx index 8e27287903e9..1b095a06cf36 100644 --- a/include/connectivity/TColumnsHelper.hxx +++ b/include/connectivity/TColumnsHelper.hxx @@ -41,7 +41,7 @@ namespace connectivity virtual void impl_refresh() throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > createDescriptor(); virtual sdbcx::ObjectType appendObject( const OUString& _rForName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ); - virtual void dropObject(sal_Int32 _nPos,const OUString _sElementName); + virtual void dropObject(sal_Int32 _nPos, const OUString& _sElementName); public: OColumnsHelper( ::cppu::OWeakObject& _rParent ,sal_Bool _bCase diff --git a/include/connectivity/TIndexes.hxx b/include/connectivity/TIndexes.hxx index 2359e94a2be4..2ed59229e6db 100644 --- a/include/connectivity/TIndexes.hxx +++ b/include/connectivity/TIndexes.hxx @@ -35,7 +35,7 @@ namespace connectivity virtual void impl_refresh() throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > createDescriptor(); virtual sdbcx::ObjectType appendObject( const OUString& _rForName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ); - virtual void dropObject(sal_Int32 _nPos,const OUString _sElementName); + virtual void dropObject(sal_Int32 _nPos,const OUString& _sElementName); public: OIndexesHelper(OTableHelper* _pTable, ::osl::Mutex& _rMutex, diff --git a/include/connectivity/TKeys.hxx b/include/connectivity/TKeys.hxx index 3602de8805d2..14226005ec05 100644 --- a/include/connectivity/TKeys.hxx +++ b/include/connectivity/TKeys.hxx @@ -36,7 +36,7 @@ namespace connectivity virtual void impl_refresh() throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > createDescriptor(); virtual sdbcx::ObjectType appendObject( const OUString& _rForName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ); - virtual void dropObject(sal_Int32 _nPos,const OUString _sElementName); + virtual void dropObject(sal_Int32 _nPos, const OUString& _sElementName); virtual OUString getDropForeignKey() const; diff --git a/include/connectivity/sdbcx/VCollection.hxx b/include/connectivity/sdbcx/VCollection.hxx index ae7f635848ca..52fb708865d2 100644 --- a/include/connectivity/sdbcx/VCollection.hxx +++ b/include/connectivity/sdbcx/VCollection.hxx @@ -71,8 +71,8 @@ namespace connectivity virtual void swap() = 0; virtual void clear() = 0; virtual void reFill(const TStringVector &_rVector) = 0; - virtual void insert(const OUString& _sName,const ObjectType& _xObject) = 0; - virtual bool rename(const OUString _sOldName,const OUString _sNewName) = 0; + virtual void insert(const OUString& _sName, const ObjectType& _xObject) = 0; + virtual bool rename(const OUString& _sOldName, const OUString& _sNewName) = 0; virtual sal_Int32 size() = 0; virtual ::com::sun::star::uno::Sequence< OUString > getElementNames() = 0; virtual OUString getName(sal_Int32 _nIndex) = 0; @@ -126,7 +126,7 @@ namespace connectivity virtual ObjectType appendObject( const OUString& _rForName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ); // called when XDrop was called - virtual void dropObject(sal_Int32 _nPos,const OUString _sElementName); + virtual void dropObject(sal_Int32 _nPos, const OUString& _sElementName); /** returns the name for the object. The default implementation ask for the property NAME. If this doesn't satisfy, it has to be overloaded. @param _xObject The object where the name should be extracted. @@ -182,7 +182,7 @@ namespace connectivity void reFill(const TStringVector &_rVector); inline sal_Bool isCaseSensitive() const { return m_pElements->isCaseSensitive(); } - void renameObject(const OUString _sOldName,const OUString _sNewName); + void renameObject(const OUString& _sOldName, const OUString& _sNewName); // only the name is identical to ::cppu::OComponentHelper virtual void SAL_CALL disposing(void); |