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 /sw | |
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 'sw')
-rw-r--r-- | sw/source/core/layout/dumpfilter.cxx | 3 | ||||
-rw-r--r-- | sw/source/core/view/printdata.cxx | 6 | ||||
-rw-r--r-- | sw/source/uibase/uno/unomodule.cxx | 3 |
3 files changed, 4 insertions, 8 deletions
diff --git a/sw/source/core/layout/dumpfilter.cxx b/sw/source/core/layout/dumpfilter.cxx index 525117a6f6c9..9ec20ba597b1 100644 --- a/sw/source/core/layout/dumpfilter.cxx +++ b/sw/source/core/layout/dumpfilter.cxx @@ -155,8 +155,7 @@ namespace sw uno::Sequence< OUString > LayoutDumpFilter::getSupportedServiceNames() throw (uno::RuntimeException, std::exception) { - uno::Sequence< OUString > aSeq( 1 ); - aSeq[0] = "com.sun.star.document.ExportFilter"; + uno::Sequence<OUString> aSeq { "com.sun.star.document.ExportFilter" }; return aSeq; } diff --git a/sw/source/core/view/printdata.cxx b/sw/source/core/view/printdata.cxx index 9d0ab63a1deb..009d8e40016b 100644 --- a/sw/source/core/view/printdata.cxx +++ b/sw/source/core/view/printdata.cxx @@ -345,8 +345,7 @@ SwPrintUIOptions::SwPrintUIOptions( aRLChoices[0] = aLocalizedStrings.GetString( 19 ); aRLChoices[1] = aLocalizedStrings.GetString( 20 ); aRLChoices[2] = aLocalizedStrings.GetString( 21 ); - uno::Sequence< OUString > aRLHelp( 1 ); - aRLHelp[0] = ".HelpID:vcl:PrintDialog:PrintLeftRightPages:ListBox"; + uno::Sequence<OUString> aRLHelp { ".HelpID:vcl:PrintDialog:PrintLeftRightPages:ListBox" }; // create a choice option for all/left/right pages // 0 : all pages (left & right) // 1 : left pages @@ -382,8 +381,7 @@ SwPrintUIOptions::SwPrintUIOptions( aBRTLChoices[0] = aLocalizedStrings.GetString( 24 ); aBRTLChoices[1] = aLocalizedStrings.GetString( 25 ); vcl::PrinterOptionsHelper::UIControlOptions aBrochureRTLOpt( aBrochurePropertyName, -1, true ); - uno::Sequence< OUString > aBRTLHelpIds( 1 ); - aBRTLHelpIds[0] = ".HelpID:vcl:PrintDialog:PrintProspectRTL:ListBox"; + uno::Sequence<OUString> aBRTLHelpIds { ".HelpID:vcl:PrintDialog:PrintProspectRTL:ListBox" }; aBrochureRTLOpt.maGroupHint = "LayoutPage"; // RTL brochure choices // 0 : left-to-right diff --git a/sw/source/uibase/uno/unomodule.cxx b/sw/source/uibase/uno/unomodule.cxx index c353e25817f8..5cb62a9db2aa 100644 --- a/sw/source/uibase/uno/unomodule.cxx +++ b/sw/source/uibase/uno/unomodule.cxx @@ -40,8 +40,7 @@ OUString SAL_CALL SwUnoModule_getImplementationName() throw() uno::Sequence< OUString > SAL_CALL SwUnoModule_getSupportedServiceNames() throw() { - uno::Sequence< OUString > aSeq( 1 ); - aSeq[0] = "com.sun.star.text.ModuleDispatcher"; + uno::Sequence<OUString> aSeq { "com.sun.star.text.ModuleDispatcher" }; return aSeq; } |