diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 11:40:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 13:15:50 +0200 |
commit | cf3fb54debffeab546085e648c73c576343be9f4 (patch) | |
tree | adc4bbd98fcbb86cb7b26823a5649abf508ef5a0 /i18npool/source | |
parent | fe00a724a918606e5c8c2c32b155bc50b33d56bd (diff) |
loplugin:sequenceloop in forms..oox
Change-Id: Id742001211e916e7709918e7112902a0c35bac95
Reviewed-on: https://gerrit.libreoffice.org/77501
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18npool/source')
-rw-r--r-- | i18npool/source/localedata/localedata.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx index 06ec029eac51..433b34c72de3 100644 --- a/i18npool/source/localedata/localedata.cxx +++ b/i18npool/source/localedata/localedata.cxx @@ -840,7 +840,7 @@ LocaleDataImpl::getAllCurrencies2( const Locale& rLocale ) Sequence< Currency > SAL_CALL LocaleDataImpl::getAllCurrencies( const Locale& rLocale ) { - Sequence< Currency2 > aCur2( getAllCurrencies2( rLocale)); + const Sequence< Currency2 > aCur2( getAllCurrencies2( rLocale)); Sequence< Currency > aCur1( aCur2.getLength()); Currency* p1 = aCur1.getArray(); for (const Currency2& r2 : aCur2) |