diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-20 15:54:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-20 18:39:11 +0200 |
commit | 1d4eb1be35cc393f98496883c2cb4ee89f4bcf0c (patch) | |
tree | 8b918663b9c37780d1fa42b8b1f35f363c7aa8d5 /unotools | |
parent | 50a6041bfac60ab03ec896bd638504524853300d (diff) |
loplugin:constvars in test..unotools
Change-Id: I087dc53ca5c18893974bbd9d959de56d5a4cdfa0
Reviewed-on: https://gerrit.libreoffice.org/77827
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/moduleoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/moduleoptions.cxx b/unotools/source/config/moduleoptions.cxx index a3881ffc06da..ffdfb3008d2e 100644 --- a/unotools/source/config/moduleoptions.cxx +++ b/unotools/source/config/moduleoptions.cxx @@ -416,7 +416,7 @@ css::uno::Sequence < OUString > SvtModuleOptions_Impl::GetAllServiceNames() { std::vector<OUString> aVec; - for( auto & rFactory : m_lFactories ) + for( const auto & rFactory : m_lFactories ) if( rFactory.getInstalled() ) aVec.push_back( rFactory.getFactory() ); |