From 4939a8905207c0aa044156dc583e4cdd6e7eb63e Mon Sep 17 00:00:00 2001 From: Mehmet Emin Başoğlu Date: Mon, 27 Jan 2020 16:37:54 +0300 Subject: tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor Change-Id: Iffb8512c530b33f87076aec9f85b45219c7d07e5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87528 Tested-by: Jenkins Reviewed-by: Muhammet Kara --- unoxml/source/rdf/librdf_repository.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'unoxml') diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx index df9f34001441..aca43c107e77 100644 --- a/unoxml/source/rdf/librdf_repository.cxx +++ b/unoxml/source/rdf/librdf_repository.cxx @@ -2464,8 +2464,7 @@ OUString _getImplementationName() { uno::Sequence< OUString > _getSupportedServiceNames() { - uno::Sequence< OUString > s { "com.sun.star.rdf.Repository" }; - return s; + return { "com.sun.star.rdf.Repository" }; } uno::Reference< uno::XInterface > _create( -- cgit