From 8569c6d0ad70c32a08774fa6f5ec25b465ea98ee Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 16 Nov 2015 09:23:41 +0200 Subject: use initialiser list for Sequence Change-Id: Ia5e47261d1fc6fac2d046656c05a1c5eedb07e02 Reviewed-on: https://gerrit.libreoffice.org/19978 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svl/source/config/languageoptions.cxx | 4 +--- svl/source/inc/passwordcontainer.hxx | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'svl') diff --git a/svl/source/config/languageoptions.cxx b/svl/source/config/languageoptions.cxx index 3ec918d881b3..4d1990cce6d2 100644 --- a/svl/source/config/languageoptions.cxx +++ b/svl/source/config/languageoptions.cxx @@ -191,9 +191,7 @@ sal_Int16 SvtLanguageOptions::GetI18NScriptTypeOfLanguage( sal_uInt16 nLang ) SvtSystemLanguageOptions::SvtSystemLanguageOptions() : utl::ConfigItem( "System/L10N") { - uno::Sequence< OUString > aPropertyNames(1); - OUString* pNames = aPropertyNames.getArray(); - pNames[0] = "SystemLocale"; + uno::Sequence< OUString > aPropertyNames { "SystemLocale" }; uno::Sequence< uno::Any > aValues = GetProperties( aPropertyNames ); if ( aValues.getLength() ) diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/inc/passwordcontainer.hxx index 3b75cc265cfc..bfecda117f57 100644 --- a/svl/source/inc/passwordcontainer.hxx +++ b/svl/source/inc/passwordcontainer.hxx @@ -206,9 +206,7 @@ public: mainCont( point ), hasEncoded( false ) { - css::uno::Sequence< OUString > aNode( 1 ); - *aNode.getArray() = path; - *aNode.getArray() += "/Store"; + css::uno::Sequence< OUString > aNode { path + "/Store" }; EnableNotification( aNode ); } -- cgit