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 --- stoc/source/security/access_controller.cxx | 3 +-- stoc/source/security/file_policy.cxx | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'stoc/source') diff --git a/stoc/source/security/access_controller.cxx b/stoc/source/security/access_controller.cxx index 7ad6b3ec74a4..31bac05019a9 100644 --- a/stoc/source/security/access_controller.cxx +++ b/stoc/source/security/access_controller.cxx @@ -911,8 +911,7 @@ sal_Bool AccessController::supportsService( OUString const & serviceName ) Sequence< OUString > AccessController::getSupportedServiceNames() throw (RuntimeException, std::exception) { - Sequence< OUString > aSNS( 1 ); - aSNS[0] = SERVICE_NAME; + Sequence aSNS { SERVICE_NAME }; return aSNS; } diff --git a/stoc/source/security/file_policy.cxx b/stoc/source/security/file_policy.cxx index 1da39f41e972..2e5095a934e9 100644 --- a/stoc/source/security/file_policy.cxx +++ b/stoc/source/security/file_policy.cxx @@ -509,8 +509,7 @@ sal_Bool FilePolicy::supportsService( OUString const & serviceName ) Sequence< OUString > FilePolicy::getSupportedServiceNames() throw (RuntimeException, std::exception) { - Sequence< OUString > aSNS( 1 ); - aSNS[0] = "com.sun.star.security.Policy"; + Sequence aSNS { "com.sun.star.security.Policy" }; return aSNS; } -- cgit