summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/appluno.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-15 12:34:57 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-15 20:22:06 +0200
commit16d7e22d78cdeac149ee874f803292b3e2634e0a (patch)
tree8e7d06758af8a478833d840d7e144ef6c7322e74 /sc/source/ui/unoobj/appluno.cxx
parentaea932b58bbb2346fb5c1bc02bcfed3e43dedabc (diff)
loplugin:sequenceloop in sc
Change-Id: I84e0b4784ddc66864b29e3b1f20c926aa17fc77f Reviewed-on: https://gerrit.libreoffice.org/77523 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/unoobj/appluno.cxx')
-rw-r--r--sc/source/ui/unoobj/appluno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/appluno.cxx b/sc/source/ui/unoobj/appluno.cxx
index e256ec67ba26..a2c9c2c9e227 100644
--- a/sc/source/ui/unoobj/appluno.cxx
+++ b/sc/source/ui/unoobj/appluno.cxx
@@ -349,7 +349,7 @@ void SAL_CALL ScSpreadsheetSettings::setPropertyValue(
// ScGlobal::SetUseTabCol does not do much else
pUserList->clear();
- for (const OUString& aEntry : aSeq)
+ for (const OUString& aEntry : std::as_const(aSeq))
{
ScUserListData* pData = new ScUserListData(aEntry);
pUserList->push_back(pData);