summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
Diffstat (limited to 'svl')
-rw-r--r--svl/source/config/languageoptions.cxx4
-rw-r--r--svl/source/inc/passwordcontainer.hxx4
2 files changed, 2 insertions, 6 deletions
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 );
}