diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-15 10:58:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-15 12:43:21 +0200 |
commit | 3a1a448ac4a04137705ea0aaf0163358fd2e5549 (patch) | |
tree | 0a7eeeebda959b1b8e7e1af99453c3f8b0541852 /extensions | |
parent | 88a6ac9f75a4375b72111af5a3e004bef4226455 (diff) |
loplugin:constvars
Change-Id: I9b35d6333afa6b305bf73fc55a7e60c8365674e9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122134
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/propertyeditor.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/propertyeditor.cxx b/extensions/source/propctrlr/propertyeditor.cxx index 36131848c403..3c94a3a24bf3 100644 --- a/extensions/source/propctrlr/propertyeditor.cxx +++ b/extensions/source/propctrlr/propertyeditor.cxx @@ -79,7 +79,7 @@ namespace pcr void OPropertyEditor::CommitModified() { // commit all of my pages, if necessary - for (auto& page : m_aShownPages) + for (const auto& page : m_aShownPages) { OBrowserPage* pPage = page.second.xPage.get(); if (pPage && pPage->getListBox().IsModified() ) @@ -318,7 +318,7 @@ namespace pcr void OPropertyEditor::EnablePropertyControls( const OUString& rEntryName, sal_Int16 nControls, bool bEnable ) { - for (auto& rPage : m_aShownPages) + for (const auto& rPage : m_aShownPages) { OBrowserPage* pPage = rPage.second.xPage.get(); if (pPage) @@ -328,7 +328,7 @@ namespace pcr void OPropertyEditor::EnablePropertyLine( const OUString& rEntryName, bool bEnable ) { - for (auto& rPage : m_aShownPages) + for (const auto& rPage : m_aShownPages) { OBrowserPage* pPage = rPage.second.xPage.get(); if (pPage) |