diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-16 09:23:41 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-16 08:35:42 +0000 |
commit | 8569c6d0ad70c32a08774fa6f5ec25b465ea98ee (patch) | |
tree | 3287608f4bb3170cc609b64c70d8d5e806c83b46 /ucb | |
parent | 57b4c4bcb0cb3c48190670b4c46ab9e92a489729 (diff) |
use initialiser list for Sequence<OUString>
Change-Id: Ia5e47261d1fc6fac2d046656c05a1c5eedb07e02
Reviewed-on: https://gerrit.libreoffice.org/19978
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/core/FileAccess.cxx | 8 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_documentcontentfactory.cxx | 4 |
2 files changed, 3 insertions, 9 deletions
diff --git a/ucb/source/core/FileAccess.cxx b/ucb/source/core/FileAccess.cxx index 0593044db820..f386d14e69ca 100644 --- a/ucb/source/core/FileAccess.cxx +++ b/ucb/source/core/FileAccess.cxx @@ -395,9 +395,7 @@ void OFileAccess::createFolder( const OUString& NewFolderURL ) if ( rProps[ 0 ].Name != "Title" ) continue; - Sequence<OUString> aNames(1); - OUString* pNames = aNames.getArray(); - pNames[0] = "Title"; + Sequence<OUString> aNames { "Title" }; Sequence< Any > aValues(1); Any* pValues = aValues.getArray(); pValues[0] = makeAny( OUString( aTitle ) ); @@ -668,9 +666,7 @@ bool OFileAccess::createNewFile( const OUString & rParentURL, if ( rProps[ 0 ].Name != "Title" ) continue; - Sequence<OUString> aNames(1); - OUString* pNames = aNames.getArray(); - pNames[0] = "Title"; + Sequence<OUString> aNames { "Title" }; Sequence< Any > aValues(1); Any* pValues = aValues.getArray(); pValues[0] = makeAny( OUString( rTitle ) ); diff --git a/ucb/source/ucp/tdoc/tdoc_documentcontentfactory.cxx b/ucb/source/ucp/tdoc/tdoc_documentcontentfactory.cxx index c896e834f410..7cf07b8c7c33 100644 --- a/ucb/source/ucp/tdoc/tdoc_documentcontentfactory.cxx +++ b/ucb/source/ucp/tdoc/tdoc_documentcontentfactory.cxx @@ -94,9 +94,7 @@ OUString DocumentContentFactory::getImplementationName_Static() uno::Sequence< OUString > DocumentContentFactory::getSupportedServiceNames_Static() { - uno::Sequence< OUString > aSNS( 1 ); - aSNS.getArray()[ 0 ] - = "com.sun.star.frame.TransientDocumentsDocumentContentFactory"; + uno::Sequence< OUString > aSNS { "com.sun.star.frame.TransientDocumentsDocumentContentFactory" }; return aSNS; } |