diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 13:17:00 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 12:20:39 +0000 |
commit | 96c26b0d9d10fa9bac3695222980d7145f0342d7 (patch) | |
tree | d2d2b4e60e8ec98ff4025abfad42be06d29b3c13 /oox | |
parent | 25aec383f95fded43b3fe5fc588b4ebdc6d7d272 (diff) |
use initialiser for Sequence<OUString>
using variations of:
git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<OUString> (\w+)\(1\)\;
\s*OUString\* pArray.*;
.*\[0\]\s*=\s*(\S+)\;/Sequence<OUString> \1 { \2 };/g"
Change-Id: I03c64334ff30ee14dce0d17b67f5122a3893bbe3
Reviewed-on: https://gerrit.libreoffice.org/19971
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/fasttokenhandler.cxx | 3 | ||||
-rw-r--r-- | oox/source/core/filterdetect.cxx | 3 | ||||
-rw-r--r-- | oox/source/docprop/ooxmldocpropimport.cxx | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/oox/source/core/fasttokenhandler.cxx b/oox/source/core/fasttokenhandler.cxx index 3fe24ef52f2d..38854405d43f 100644 --- a/oox/source/core/fasttokenhandler.cxx +++ b/oox/source/core/fasttokenhandler.cxx @@ -38,8 +38,7 @@ OUString SAL_CALL FastTokenHandler_getImplementationName() Sequence< OUString > SAL_CALL FastTokenHandler_getSupportedServiceNames() { - Sequence< OUString > aServiceNames( 1 ); - aServiceNames[ 0 ] = "com.sun.star.xml.sax.FastTokenHandler"; + Sequence<OUString> aServiceNames { "com.sun.star.xml.sax.FastTokenHandler" }; return aServiceNames; } diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx index 13f195d8ad82..ede7849c599f 100644 --- a/oox/source/core/filterdetect.cxx +++ b/oox/source/core/filterdetect.cxx @@ -228,8 +228,7 @@ void FilterDetectDocHandler::parseContentTypesOverride( const AttributeList& rAt /* Helper for XServiceInfo */ Sequence< OUString > FilterDetect_getSupportedServiceNames() { - Sequence< OUString > aServiceNames( 1 ); - aServiceNames[ 0 ] = "com.sun.star.frame.ExtendedTypeDetection"; + Sequence<OUString> aServiceNames { "com.sun.star.frame.ExtendedTypeDetection" }; return aServiceNames; } diff --git a/oox/source/docprop/ooxmldocpropimport.cxx b/oox/source/docprop/ooxmldocpropimport.cxx index 646c09c68437..5f2199f3cac5 100644 --- a/oox/source/docprop/ooxmldocpropimport.cxx +++ b/oox/source/docprop/ooxmldocpropimport.cxx @@ -51,8 +51,7 @@ OUString SAL_CALL DocumentPropertiesImport_getImplementationName() Sequence< OUString > SAL_CALL DocumentPropertiesImport_getSupportedServiceNames() { - Sequence< OUString > aServices( 1 ); - aServices[ 0 ] = "com.sun.star.document.OOXMLDocumentPropertiesImporter"; + Sequence<OUString> aServices { "com.sun.star.document.OOXMLDocumentPropertiesImporter" }; return aServices; } |