diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-13 10:44:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-13 13:27:51 +0200 |
commit | 9fce680e27e57f0539f55c7ecb5c8e1d96029267 (patch) | |
tree | 36475df8317c32dd9db79d0eafe9a50df7e1018e /dbaccess/source/ui/inc/CollectionView.hxx | |
parent | ef268562602a4bef0e128f95beaef9732ac00c7d (diff) |
loplugin:passstuffbyref in dbaccess
Change-Id: Ice52ebbfeca45c8587fdcd0d3dea5c02c7de27e3
Diffstat (limited to 'dbaccess/source/ui/inc/CollectionView.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/CollectionView.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/inc/CollectionView.hxx b/dbaccess/source/ui/inc/CollectionView.hxx index f1ac9a1682cb..794c3213807e 100644 --- a/dbaccess/source/ui/inc/CollectionView.hxx +++ b/dbaccess/source/ui/inc/CollectionView.hxx @@ -58,7 +58,7 @@ namespace dbaui ,const css::uno::Reference< css::uno::XComponentContext >& _rxContext); virtual ~OCollectionView(); virtual void dispose() override; - css::uno::Reference< css::ucb::XContent> getSelectedFolder() const { return m_xContent;} + const css::uno::Reference< css::ucb::XContent>& getSelectedFolder() const { return m_xContent;} OUString getName() const; }; } // namespace dbaui |