diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-27 09:43:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-07-27 10:23:13 +0200 |
commit | 702e26d6568ff739ff3783564044ad8afa689b1f (patch) | |
tree | 0280287c71a0332f690810e77ef4dadb793eab39 /cui | |
parent | c755336853f20c7b2dd14e9c56eeb441d831be2c (diff) |
loplugin:passstuffbyref
Change-Id: I37cc39974784e59aa793c2a2ca0dbc59d00e3cb4
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/inc/cuitabarea.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx index 82676af138cf..8eb92b965ff8 100644 --- a/cui/source/inc/cuitabarea.hxx +++ b/cui/source/inc/cuitabarea.hxx @@ -576,7 +576,7 @@ public: virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; virtual void PointChanged( vcl::Window* pWindow, RECT_POINT eRP ) override; - void SetBitmapList( XBitmapListRef pBmpLst) { m_pBitmapList = pBmpLst; } + void SetBitmapList( const XBitmapListRef& pBmpLst) { m_pBitmapList = pBmpLst; } void SetPageType( sal_uInt16* pInType ) { m_nPageType = pInType; } void SetDlgType( sal_uInt16 nInType ) { m_nDlgType = nInType; } |