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 /shell | |
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 'shell')
-rw-r--r-- | shell/source/win32/workbench/TestSmplMail.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shell/source/win32/workbench/TestSmplMail.cxx b/shell/source/win32/workbench/TestSmplMail.cxx index 9067b2866f9b..a33e7a81d4f2 100644 --- a/shell/source/win32/workbench/TestSmplMail.cxx +++ b/shell/source/win32/workbench/TestSmplMail.cxx @@ -108,13 +108,11 @@ int SAL_CALL main(int , char*, char* ) xSmplMailMsg->setRecipient( OUString("tino.rachui@germany.sun.com") ); xSmplMailMsg->setOriginator( OUString("tino.rachui@germany.sun.com") ); - Sequence< OUString > ccRecips( 1 ); - ccRecips[0] = "tino.rachui@germany.sun.com"; + Sequence<OUString> ccRecips { "tino.rachui@germany.sun.com" }; xSmplMailMsg->setCcRecipient( ccRecips ); - Sequence< OUString > bccRecips( 1 ); - bccRecips[0] = "tino.rachui@germany.sun.com"; + Sequence<OUString> bccRecips { "tino.rachui@germany.sun.com" }; xSmplMailMsg->setBccRecipient( bccRecips ); |