diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 08:43:35 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 10:13:08 +0000 |
commit | 8e234c5b7d5bae66c544e581bee5770f3f83dd81 (patch) | |
tree | 7d78f03ce2231de4f727d1135449aeb8cba74e99 /i18npool/source/collator | |
parent | 3bdd176731c351638f541a37b94094124f3c9f52 (diff) |
use initialiser syntax for Sequence<OUString>
replaced using the script:
git grep -lP 'Sequence.*OUString.*\(1\)'
| xargs perl -0777 -pi
-e "s/Sequence< OUString > (\w+)\(1\);
.*\[0\] = (\S+);/Sequence< OUString > \1 { \2 };/g"
Change-Id: I23688a91562051a8eed11fc2a85599545c285c34
Reviewed-on: https://gerrit.libreoffice.org/19967
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'i18npool/source/collator')
-rw-r--r-- | i18npool/source/collator/chaptercollator.cxx | 3 | ||||
-rw-r--r-- | i18npool/source/collator/collatorImpl.cxx | 3 | ||||
-rw-r--r-- | i18npool/source/collator/collator_unicode.cxx | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/i18npool/source/collator/chaptercollator.cxx b/i18npool/source/collator/chaptercollator.cxx index e290c39abbb5..b18e0fcf8859 100644 --- a/i18npool/source/collator/chaptercollator.cxx +++ b/i18npool/source/collator/chaptercollator.cxx @@ -90,8 +90,7 @@ ChapterCollator::supportsService(const OUString& rServiceName) throw( RuntimeExc Sequence< OUString > SAL_CALL ChapterCollator::getSupportedServiceNames() throw( RuntimeException, std::exception ) { - Sequence< OUString > aRet(1); - aRet[0] = OUString::createFromAscii(cChapCollator); + Sequence< OUString > aRet { OUString::createFromAscii(cChapCollator) }; return aRet; } diff --git a/i18npool/source/collator/collatorImpl.cxx b/i18npool/source/collator/collatorImpl.cxx index ca800b194472..874e3469f1f0 100644 --- a/i18npool/source/collator/collatorImpl.cxx +++ b/i18npool/source/collator/collatorImpl.cxx @@ -226,8 +226,7 @@ sal_Bool SAL_CALL CollatorImpl::supportsService(const OUString& rServiceName) Sequence< OUString > SAL_CALL CollatorImpl::getSupportedServiceNames() throw( RuntimeException, std::exception ) { - Sequence< OUString > aRet(1); - aRet[0] = "com.sun.star.i18n.Collator"; + Sequence< OUString > aRet { "com.sun.star.i18n.Collator" }; return aRet; } diff --git a/i18npool/source/collator/collator_unicode.cxx b/i18npool/source/collator/collator_unicode.cxx index 468321c83586..3a839496ae01 100644 --- a/i18npool/source/collator/collator_unicode.cxx +++ b/i18npool/source/collator/collator_unicode.cxx @@ -404,8 +404,7 @@ Collator_Unicode::supportsService(const OUString& rServiceName) throw( RuntimeEx Sequence< OUString > SAL_CALL Collator_Unicode::getSupportedServiceNames() throw( RuntimeException, std::exception ) { - Sequence< OUString > aRet(1); - aRet[0] = OUString::createFromAscii(implementationName); + Sequence< OUString > aRet { OUString::createFromAscii(implementationName) }; return aRet; } |