diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-13 13:32:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-14 09:21:39 +0200 |
commit | 40f8d2566022140ca3f2d45d7cbd8b7ab51125ed (patch) | |
tree | 4a8bd6baf43f3789425ff8d7e988e7928942169f /svx/source/dialog | |
parent | cb4015bb28dd7430efaaa523d04a155eb7e46305 (diff) |
loplugin:passstuffbyref in svx
Change-Id: I7d405830785cb12aaceb65d6ed03dda04aa90fd8
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/dlgctrl.cxx | 2 | ||||
-rw-r--r-- | svx/source/dialog/docrecovery.cxx | 4 | ||||
-rw-r--r-- | svx/source/dialog/imapwnd.hxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx index 69dbc1ed95e7..c80c8c930109 100644 --- a/svx/source/dialog/dlgctrl.cxx +++ b/svx/source/dialog/dlgctrl.cxx @@ -515,7 +515,7 @@ void SvxRectCtl::Paint(vcl::RenderContext& rRenderContext, const Rectangle&) // Convert RECT_POINT Point -Point SvxRectCtl::GetPointFromRP( RECT_POINT _eRP) const +const Point& SvxRectCtl::GetPointFromRP( RECT_POINT _eRP) const { switch( _eRP ) { diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index 08e9944b60d4..d1d997022e74 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -79,7 +79,7 @@ RecoveryCore::~RecoveryCore() } -css::uno::Reference< css::uno::XComponentContext > RecoveryCore::getComponentContext() +const css::uno::Reference< css::uno::XComponentContext >& RecoveryCore::getComponentContext() { return m_xContext; } @@ -1314,7 +1314,7 @@ bool BrokenRecoveryDialog::isExecutionNeeded() } -OUString BrokenRecoveryDialog::getSaveDirURL() +const OUString& BrokenRecoveryDialog::getSaveDirURL() { return m_sSavePath; } diff --git a/svx/source/dialog/imapwnd.hxx b/svx/source/dialog/imapwnd.hxx index a82775b98e78..ed25c721db5c 100644 --- a/svx/source/dialog/imapwnd.hxx +++ b/svx/source/dialog/imapwnd.hxx @@ -76,7 +76,7 @@ public: virtual SdrObjUserData* Clone( SdrObject * ) const override { return new IMapUserData( *this ); } - const IMapObjectPtr GetObject() const { return mpObj; } + const IMapObjectPtr& GetObject() const { return mpObj; } void ReplaceObject( const IMapObjectPtr& pNewIMapObject ) { mpObj = pNewIMapObject; } }; |