From 25aec383f95fded43b3fe5fc588b4ebdc6d7d272 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 15 Nov 2015 12:22:28 +0200 Subject: use initialiser for Sequence 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 \1 { \2 };/g" Change-Id: I20ad0489da887a9712982531c3b127339bb8b3b9 Reviewed-on: https://gerrit.libreoffice.org/19969 Tested-by: Jenkins Reviewed-by: Noel Grandin --- dbaccess/source/filter/xml/dbloader2.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'dbaccess/source/filter') diff --git a/dbaccess/source/filter/xml/dbloader2.cxx b/dbaccess/source/filter/xml/dbloader2.cxx index 84cd8273e85e..ce5b7167d478 100644 --- a/dbaccess/source/filter/xml/dbloader2.cxx +++ b/dbaccess/source/filter/xml/dbloader2.cxx @@ -208,8 +208,7 @@ Sequence< OUString > SAL_CALL DBTypeDetection::getSupportedServiceNames() throw( // ORegistryServiceManager_Static Sequence< OUString > DBTypeDetection::getSupportedServiceNames_Static() throw( ) { - Sequence< OUString > aSNS( 1 ); - aSNS[0] = "com.sun.star.document.ExtendedTypeDetection"; + Sequence aSNS { "com.sun.star.document.ExtendedTypeDetection" }; return aSNS; } @@ -299,8 +298,7 @@ Sequence< OUString > SAL_CALL DBContentLoader::getSupportedServiceNames() throw( // ORegistryServiceManager_Static Sequence< OUString > DBContentLoader::getSupportedServiceNames_Static() throw( ) { - Sequence< OUString > aSNS( 1 ); - aSNS[0] = "com.sun.star.frame.FrameLoader"; + Sequence aSNS { "com.sun.star.frame.FrameLoader" }; return aSNS; } -- cgit