summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/sdview3.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-20 11:16:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-20 13:05:02 +0200
commitff6e8c73adef7c86db12287948025954a4fc7746 (patch)
treeebd53edfbd8e6349b0dab9a92cedb9968a2454c9 /sd/source/ui/view/sdview3.cxx
parentb2423a480785db6f4883d6314690b22b69d55c22 (diff)
loplugin:constvars in sccomp..sd
Change-Id: Ic4b2a1d23da80a5b0976692f490c29a7169be3ef Reviewed-on: https://gerrit.libreoffice.org/77793 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/view/sdview3.cxx')
-rw-r--r--sd/source/ui/view/sdview3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/sdview3.cxx b/sd/source/ui/view/sdview3.cxx
index bf452204c092..14eaef7bdd91 100644
--- a/sd/source/ui/view/sdview3.cxx
+++ b/sd/source/ui/view/sdview3.cxx
@@ -107,7 +107,7 @@ struct ImpRememberOrigAndClone
static SdrObject* ImpGetClone(std::vector<ImpRememberOrigAndClone>& aConnectorContainer, SdrObject const * pConnObj)
{
- for(ImpRememberOrigAndClone& rImp : aConnectorContainer)
+ for(const ImpRememberOrigAndClone& rImp : aConnectorContainer)
{
if(pConnObj == rImp.pOrig)
return rImp.pClone;