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 /fpicker/source | |
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 'fpicker/source')
-rw-r--r-- | fpicker/source/aqua/FPentry.mm | 6 | ||||
-rw-r--r-- | fpicker/source/office/RemoteFilesDialog.cxx | 6 | ||||
-rw-r--r-- | fpicker/source/win32/filepicker/FPentry.cxx | 6 |
3 files changed, 6 insertions, 12 deletions
diff --git a/fpicker/source/aqua/FPentry.mm b/fpicker/source/aqua/FPentry.mm index fbb9c0ca2507..ffbf21884f66 100644 --- a/fpicker/source/aqua/FPentry.mm +++ b/fpicker/source/aqua/FPentry.mm @@ -60,8 +60,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL fps_aqua_component_getFactory( if (0 == rtl_str_compare(pImplName, FILE_PICKER_IMPL_NAME)) { - Sequence< OUString > aSNS( 1 ); - aSNS.getArray( )[0] = FILE_PICKER_SERVICE_NAME; + Sequence<OUString> aSNS { FILE_PICKER_SERVICE_NAME }; xFactory = createSingleFactory( static_cast< XMultiServiceFactory* > ( pSrvManager ), @@ -71,8 +70,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL fps_aqua_component_getFactory( } else if (0 == rtl_str_compare(pImplName, FOLDER_PICKER_IMPL_NAME)) { - Sequence< OUString > aSNS( 1 ); - aSNS.getArray( )[0] = FOLDER_PICKER_SERVICE_NAME; + Sequence<OUString> aSNS { FOLDER_PICKER_SERVICE_NAME }; xFactory = createSingleFactory( static_cast< XMultiServiceFactory* > ( pSrvManager ), diff --git a/fpicker/source/office/RemoteFilesDialog.cxx b/fpicker/source/office/RemoteFilesDialog.cxx index ba5d5bdf6b0b..b5de1d9cde94 100644 --- a/fpicker/source/office/RemoteFilesDialog.cxx +++ b/fpicker/source/office/RemoteFilesDialog.cxx @@ -706,8 +706,7 @@ void RemoteFilesDialog::SavePassword( const OUString& rURL, const OUString& rUse InteractionHandler::createWithParent( m_xContext, nullptr ), UNO_QUERY ); - Sequence< OUString > aPasswd( 1 ); - aPasswd[0] = rPassword; + Sequence<OUString> aPasswd { rPassword }; if( bPersistent ) m_xMasterPasswd->addPersistent( @@ -901,8 +900,7 @@ IMPL_LINK_TYPED ( RemoteFilesDialog, EditServiceMenuHdl, MenuButton *, pButton, if ( pPasswordRequest->isPassword() ) { OUString aNewPass = pPasswordRequest->getPassword(); - Sequence< OUString > aPasswd( 1 ); - aPasswd[0] = aNewPass; + Sequence<OUString> aPasswd { aNewPass }; m_xMasterPasswd->addPersistent( sUrl, sUserName, aPasswd, xInteractionHandler ); diff --git a/fpicker/source/win32/filepicker/FPentry.cxx b/fpicker/source/win32/filepicker/FPentry.cxx index 2461d58b2be2..2ee969cb63da 100644 --- a/fpicker/source/win32/filepicker/FPentry.cxx +++ b/fpicker/source/win32/filepicker/FPentry.cxx @@ -94,8 +94,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL fps_win32_component_getFactory( if ( pSrvManager && ( 0 == rtl_str_compare( pImplName, FILE_PICKER_IMPL_NAME ) ) ) { - Sequence< OUString > aSNS( 1 ); - aSNS.getArray( )[0] = FILE_PICKER_SERVICE_NAME; + Sequence<OUString> aSNS { FILE_PICKER_SERVICE_NAME }; Reference< XSingleServiceFactory > xFactory ( createSingleFactory( reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ), @@ -111,8 +110,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL fps_win32_component_getFactory( if ( pSrvManager && ( 0 == rtl_str_compare( pImplName, FOLDER_PICKER_IMPL_NAME ) ) ) { - Sequence< OUString > aSNS( 1 ); - aSNS.getArray( )[0] = FOLDER_PICKER_SERVICE_NAME; + Sequence<OUString> aSNS { FOLDER_PICKER_SERVICE_NAME }; Reference< XSingleServiceFactory > xFactory ( createSingleFactory( reinterpret_cast< XMultiServiceFactory* > ( pSrvManager ), |