From 9359d9a94d446fc40c5f98fcdbc3086ecba1f830 Mon Sep 17 00:00:00 2001 From: Onur Yilmaz Date: Mon, 27 Jan 2020 23:59:35 +0300 Subject: tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor Change-Id: Ie5a381fc5e5b73490ab8b2036ef2a1164e475e8f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87557 Tested-by: Jenkins Reviewed-by: Muhammet Kara --- extensions/source/propctrlr/propcontroller.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'extensions/source') diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx index 3cfd255ad1b7..54b6a1bea66a 100644 --- a/extensions/source/propctrlr/propcontroller.cxx +++ b/extensions/source/propctrlr/propcontroller.cxx @@ -545,8 +545,7 @@ namespace pcr Sequence< OUString > OPropertyBrowserController::getSupportedServiceNames_static( ) { - Sequence< OUString > aSupported { "com.sun.star.inspection.ObjectInspector" }; - return aSupported; + return { "com.sun.star.inspection.ObjectInspector" }; } -- cgit