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 /scripting | |
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 'scripting')
-rw-r--r-- | scripting/source/dlgprov/dlgprov.cxx | 3 | ||||
-rw-r--r-- | scripting/source/stringresource/stringresource.cxx | 9 |
2 files changed, 4 insertions, 8 deletions
diff --git a/scripting/source/dlgprov/dlgprov.cxx b/scripting/source/dlgprov/dlgprov.cxx index 2d09fe625f9d..33ccd6d04039 100644 --- a/scripting/source/dlgprov/dlgprov.cxx +++ b/scripting/source/dlgprov/dlgprov.cxx @@ -73,8 +73,7 @@ namespace comp_DialogModelProvider uno::Sequence< OUString > SAL_CALL _getSupportedServiceNames() { - uno::Sequence< OUString > s(1); - s[0] = "com.sun.star.awt.UnoControlDialogModelProvider"; + uno::Sequence< OUString > s { "com.sun.star.awt.UnoControlDialogModelProvider" }; return s; } diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx index c6b7cae2206c..07b7aaf102df 100644 --- a/scripting/source/stringresource/stringresource.cxx +++ b/scripting/source/stringresource/stringresource.cxx @@ -80,8 +80,7 @@ namespace stringresource // component operations static Sequence< OUString > getSupportedServiceNames_StringResourceImpl() { - Sequence< OUString > names(1); - names[0] = "com.sun.star.resource.StringResource"; + Sequence< OUString > names { "com.sun.star.resource.StringResource" }; return names; } @@ -2262,8 +2261,7 @@ bool StringResourcePersistenceImpl::implWritePropertiesFile( LocaleItem* pLocale // component operations static Sequence< OUString > getSupportedServiceNames_StringResourceWithStorageImpl() { - Sequence< OUString > names(1); - names[0] = "com.sun.star.resource.StringResourceWithStorage"; + Sequence< OUString > names { "com.sun.star.resource.StringResourceWithStorage" }; return names; } @@ -2587,8 +2585,7 @@ bool StringResourceWithStorageImpl::implLoadLocale( LocaleItem* pLocaleItem ) // component operations static Sequence< OUString > getSupportedServiceNames_StringResourceWithLocationImpl() { - Sequence< OUString > names(1); - names[0] = "com.sun.star.resource.StringResourceWithLocation"; + Sequence< OUString > names { "com.sun.star.resource.StringResourceWithLocation" }; return names; } |