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 /unotools | |
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 'unotools')
-rw-r--r-- | unotools/source/config/saveopt.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/unotools/source/config/saveopt.cxx b/unotools/source/config/saveopt.cxx index 06018f2c1d87..38dff4156745 100644 --- a/unotools/source/config/saveopt.cxx +++ b/unotools/source/config/saveopt.cxx @@ -784,8 +784,7 @@ SvtLoadOptions_Impl::SvtLoadOptions_Impl() : ConfigItem( OUString("Office.Common/Load") ) , bLoadUserDefinedSettings( false ) { - Sequence< OUString > aNames(1); - aNames[0] = cUserDefinedSettings; + Sequence< OUString > aNames { cUserDefinedSettings }; Sequence< Any > aValues = GetProperties( aNames ); EnableNotification( aNames ); const Any* pValues = aValues.getConstArray(); @@ -800,8 +799,7 @@ SvtLoadOptions_Impl::~SvtLoadOptions_Impl() void SvtLoadOptions_Impl::ImplCommit() { - Sequence< OUString > aNames(1); - aNames[0] = cUserDefinedSettings; + Sequence< OUString > aNames { cUserDefinedSettings }; Sequence< Any > aValues( 1 ); aValues[0].setValue(&bLoadUserDefinedSettings, cppu::UnoType<bool>::get()); PutProperties( aNames, aValues ); |