diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-23 09:47:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-24 08:36:11 +0200 |
commit | 2629aac31142449312f77c5843ea209cc810acb4 (patch) | |
tree | 2d8e11d8b346b50a48f80cf1c28fed6962831730 /svx/source/sdr/overlay | |
parent | 4e51d68dc3595dae8b2519e0a023c9b1ca13a8fd (diff) |
clang-tidy performance-unnecessary-copy-init in svx
Change-Id: I27f4dd0cb08f9b62496a1c51eed732a678e1c2e5
Reviewed-on: https://gerrit.libreoffice.org/62252
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/sdr/overlay')
-rw-r--r-- | svx/source/sdr/overlay/overlayobjectlist.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sdr/overlay/overlayobjectlist.cxx b/svx/source/sdr/overlay/overlayobjectlist.cxx index 8b92e076eda2..182acf22e38b 100644 --- a/svx/source/sdr/overlay/overlayobjectlist.cxx +++ b/svx/source/sdr/overlay/overlayobjectlist.cxx @@ -80,7 +80,7 @@ namespace sdr fLogicTolerance = aSizeLogic.Width(); } - const drawinglayer::geometry::ViewInformation2D aViewInformation2D(pManager->getCurrentViewInformation2D()); + const drawinglayer::geometry::ViewInformation2D& aViewInformation2D(pManager->getCurrentViewInformation2D()); drawinglayer::processor2d::HitTestProcessor2D aHitTestProcessor2D( aViewInformation2D, rLogicPosition, |