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 /svl | |
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 'svl')
-rw-r--r-- | svl/source/numbers/supservs.cxx | 3 | ||||
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 3 | ||||
-rw-r--r-- | svl/source/uno/pathservice.cxx | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/svl/source/numbers/supservs.cxx b/svl/source/numbers/supservs.cxx index 2c5c777d3681..bec6b7aaa1a6 100644 --- a/svl/source/numbers/supservs.cxx +++ b/svl/source/numbers/supservs.cxx @@ -121,8 +121,7 @@ sal_Bool SAL_CALL SvNumberFormatsSupplierServiceObject::supportsService( const O Sequence< OUString > SAL_CALL SvNumberFormatsSupplierServiceObject::getSupportedServiceNames( ) throw(RuntimeException, std::exception) { - Sequence< OUString > aSupported(1); - aSupported.getArray()[0] = "com.sun.star.util.NumberFormatsSupplier"; + Sequence< OUString > aSupported { "com.sun.star.util.NumberFormatsSupplier" }; return aSupported; } diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index 78720601b7f3..2c41772352c8 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -1371,8 +1371,7 @@ Sequence< OUString > SAL_CALL PasswordContainer::getSupportedServiceNames( ) th Sequence< OUString > SAL_CALL PasswordContainer::impl_getStaticSupportedServiceNames( ) throw(uno::RuntimeException) { - Sequence< OUString > aRet(1); - aRet[0] = "com.sun.star.task.PasswordContainer"; + Sequence< OUString > aRet { "com.sun.star.task.PasswordContainer" }; return aRet; } diff --git a/svl/source/uno/pathservice.cxx b/svl/source/uno/pathservice.cxx index f0930bed0cf2..7bca666bd70a 100644 --- a/svl/source/uno/pathservice.cxx +++ b/svl/source/uno/pathservice.cxx @@ -55,8 +55,7 @@ public: virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) override { - css::uno::Sequence< OUString > aRet(1); - aRet.getArray()[0] = "com.sun.star.config.SpecialConfigManager"; + css::uno::Sequence< OUString > aRet { "com.sun.star.config.SpecialConfigManager" }; return aRet; } |