summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/localedatawrapper.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-15 15:21:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-16 08:11:27 +0200
commita0073744aac89648e89506b79e227b17dacf58d0 (patch)
treed40b1c631884a0ce4428be716f550b12921ab21e /unotools/source/i18n/localedatawrapper.cxx
parent61e02561aa659d829a6786609fc57d99fd8652b4 (diff)
loplugin:sequenceloop in ucb..unotools
Change-Id: Ie52d993c185ba43386b494baad0a484d5b365499 Reviewed-on: https://gerrit.libreoffice.org/77532 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools/source/i18n/localedatawrapper.cxx')
-rw-r--r--unotools/source/i18n/localedatawrapper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/i18n/localedatawrapper.cxx b/unotools/source/i18n/localedatawrapper.cxx
index ead8a1ac53bb..8a16ec556f47 100644
--- a/unotools/source/i18n/localedatawrapper.cxx
+++ b/unotools/source/i18n/localedatawrapper.cxx
@@ -295,7 +295,7 @@ std::vector< LanguageType > LocaleDataWrapper::getInstalledLanguageTypes()
if ( !rInstalledLanguageTypes.empty() )
return rInstalledLanguageTypes;
- css::uno::Sequence< css::lang::Locale > xLoc = getInstalledLocaleNames();
+ const css::uno::Sequence< css::lang::Locale > xLoc = getInstalledLocaleNames();
sal_Int32 nCount = xLoc.getLength();
std::vector< LanguageType > xLang;
xLang.reserve(nCount);