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 /io | |
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 'io')
-rw-r--r-- | io/source/TextInputStream/TextInputStream.cxx | 3 | ||||
-rw-r--r-- | io/source/acceptor/acceptor.cxx | 3 | ||||
-rw-r--r-- | io/source/connector/connector.cxx | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx index de67189f844a..d0cbf9fbca88 100644 --- a/io/source/TextInputStream/TextInputStream.cxx +++ b/io/source/TextInputStream/TextInputStream.cxx @@ -443,8 +443,7 @@ OUString TextInputStream_getImplementationName() Sequence< OUString > TextInputStream_getSupportedServiceNames() { - Sequence< OUString > seqNames(1); - seqNames.getArray()[0] = SERVICE_NAME; + Sequence< OUString > seqNames { SERVICE_NAME }; return seqNames; } diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx index 12f0a10aca3e..12fde58be079 100644 --- a/io/source/acceptor/acceptor.cxx +++ b/io/source/acceptor/acceptor.cxx @@ -278,8 +278,7 @@ namespace io_acceptor Sequence< OUString > acceptor_getSupportedServiceNames() { - Sequence< OUString > seqNames(1); - seqNames.getArray()[0] = SERVICE_NAME; + Sequence< OUString > seqNames { SERVICE_NAME }; return seqNames; } diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx index 25fa3bdc373b..025f1a00db71 100644 --- a/io/source/connector/connector.cxx +++ b/io/source/connector/connector.cxx @@ -177,8 +177,7 @@ namespace stoc_connector Sequence< OUString > connector_getSupportedServiceNames() { - Sequence< OUString > seqNames(1); - seqNames.getArray()[0] = SERVICE_NAME; + Sequence< OUString > seqNames { SERVICE_NAME }; return seqNames; } |