diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-23 08:20:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-24 08:38:02 +0200 |
commit | 87c06415cebd707ae359cb2f1b06d468cb6afb08 (patch) | |
tree | 2732c68fcc98c03f6fecddc59000e9e25b067c2d /sc/source/ui/app/drwtrans.cxx | |
parent | f31c9f16fefd16ea434cdd68721d45bced9b78e1 (diff) |
clang-tidy performance-unnecessary-copy-init in sc
Change-Id: I93ded61c22bd533a6ffaddd20d6e527f176e7651
Reviewed-on: https://gerrit.libreoffice.org/62218
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/app/drwtrans.cxx')
-rw-r--r-- | sc/source/ui/app/drwtrans.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/app/drwtrans.cxx b/sc/source/ui/app/drwtrans.cxx index 759f3f9763f2..a73b474ad477 100644 --- a/sc/source/ui/app/drwtrans.cxx +++ b/sc/source/ui/app/drwtrans.cxx @@ -125,7 +125,7 @@ ScDrawTransferObj::ScDrawTransferObj( std::unique_ptr<SdrModel> pClipModel, ScDo SdrUnoObj* pUnoCtrl = dynamic_cast<SdrUnoObj*>( pObject ); if (pUnoCtrl && SdrInventor::FmForm == pUnoCtrl->GetObjInventor()) { - uno::Reference<awt::XControlModel> xControlModel = pUnoCtrl->GetUnoControlModel(); + const uno::Reference<awt::XControlModel>& xControlModel = pUnoCtrl->GetUnoControlModel(); OSL_ENSURE( xControlModel.is(), "uno control without model" ); if ( xControlModel.is() ) { |