diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 12:22:28 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 12:18:55 +0000 |
commit | 25aec383f95fded43b3fe5fc588b4ebdc6d7d272 (patch) | |
tree | 846cce228d7ff120abc40b7767b251c2e04b2a30 /cui | |
parent | 35f5833ca35dc170b67ed9f8e288302eb06eb972 (diff) |
use initialiser for Sequence<OUString>
replaced using:
git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)'
| xargs perl -0777 -pi -e
"s/Sequence<\s*OUString\s*> (\w+)\(\s*1\s*\);
.*\[0\] = (\S+);/Sequence<OUString> \1 { \2 };/g"
Change-Id: I20ad0489da887a9712982531c3b127339bb8b3b9
Reviewed-on: https://gerrit.libreoffice.org/19969
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/cfg.cxx | 3 | ||||
-rw-r--r-- | cui/source/options/webconninfo.cxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index f67fabdb5d9b..71adb03bf59b 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -934,8 +934,7 @@ uno::Reference< graphic::XGraphic > GetGraphic( // TODO handle large graphics uno::Sequence< uno::Reference< graphic::XGraphic > > aGraphicSeq; - uno::Sequence< OUString > aImageCmdSeq( 1 ); - aImageCmdSeq[0] = rCommandURL; + uno::Sequence<OUString> aImageCmdSeq { rCommandURL }; try { diff --git a/cui/source/options/webconninfo.cxx b/cui/source/options/webconninfo.cxx index 3feee93698e2..2a6b5870ec31 100644 --- a/cui/source/options/webconninfo.cxx +++ b/cui/source/options/webconninfo.cxx @@ -279,8 +279,7 @@ IMPL_LINK_NOARG_TYPED(WebConnectionInfoDialog, ChangePasswordHdl, Button*, void) if ( pPasswordRequest->isPassword() ) { OUString aNewPass = pPasswordRequest->getPassword(); - uno::Sequence< OUString > aPasswd( 1 ); - aPasswd[0] = aNewPass; + uno::Sequence<OUString> aPasswd { aNewPass }; uno::Reference< task::XPasswordContainer2 > xPasswdContainer( task::PasswordContainer::create(comphelper::getProcessComponentContext())); |