diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 14:19:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 20:23:20 +0200 |
commit | 7b4f643f4feb28fdc92b3da7a95d0f1c7286d01a (patch) | |
tree | 1c203e78d9b634df39ce312b1daa411616d4bc49 /svx/source/unogallery | |
parent | c504780e7883e911916689c12709d64d78125422 (diff) |
loplugin:sequenceloop in svtools..svx
Change-Id: I81b54f6db69491492b2bc16f48b2296ad96e137d
Reviewed-on: https://gerrit.libreoffice.org/77529
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/unogallery')
-rw-r--r-- | svx/source/unogallery/unogalthemeprovider.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unogallery/unogalthemeprovider.cxx b/svx/source/unogallery/unogalthemeprovider.cxx index a0b72e997435..58c4234ef899 100644 --- a/svx/source/unogallery/unogalthemeprovider.cxx +++ b/svx/source/unogallery/unogalthemeprovider.cxx @@ -129,7 +129,7 @@ void SAL_CALL GalleryThemeProvider::initialize( const uno::Sequence< uno::Any >& break; } - for( const beans::PropertyValue& rProp : aParams ) + for( const beans::PropertyValue& rProp : std::as_const(aParams) ) { if ( rProp.Name == "ProvideHiddenThemes" ) rProp.Value >>= mbHiddenThemes; |