diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-03-18 12:36:02 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-03-25 15:14:44 +0200 |
commit | f365b17bf170c8ed1baae299a2d719774fcc4305 (patch) | |
tree | 312378ff5e6ef487ab65d7a1d011307486941c56 /linguistic/source/spelldsp.cxx | |
parent | dd5df4ccb33048fa5fa8f85b2e6e69a6a225be57 (diff) |
Use for-range loops in some modules
jvmaccess, jvmfwk, l10ntools, libreofficekit and linguistic
Change-Id: I9d290d1098b25ccb3aee19d2df18c18f4aa65105
Reviewed-on: https://gerrit.libreoffice.org/51495
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'linguistic/source/spelldsp.cxx')
-rw-r--r-- | linguistic/source/spelldsp.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/linguistic/source/spelldsp.cxx b/linguistic/source/spelldsp.cxx index 7d1ac95fc32c..b3a795f7f75c 100644 --- a/linguistic/source/spelldsp.cxx +++ b/linguistic/source/spelldsp.cxx @@ -192,10 +192,9 @@ Sequence< Locale > SAL_CALL SpellCheckerDispatcher::getLocales() Sequence< Locale > aLocales( static_cast< sal_Int32 >(m_aSvcMap.size()) ); Locale *pLocales = aLocales.getArray(); - SpellSvcByLangMap_t::const_iterator aIt; - for (aIt = m_aSvcMap.begin(); aIt != m_aSvcMap.end(); ++aIt) + for (auto const& elem : m_aSvcMap) { - *pLocales++ = LanguageTag::convertToLocale( aIt->first ); + *pLocales++ = LanguageTag::convertToLocale(elem.first); } return aLocales; } |