From d55de29c165e34b8a9ccb7ebf79f76a601103977 Mon Sep 17 00:00:00 2001 From: Zeynep Yavuz Date: Wed, 11 Aug 2021 00:22:51 +0300 Subject: tdf#88205: Adapt uses of css::uno::Sequence to use initialize_list ctor Change-Id: I3c01bb8abeee949bcd1aae861aeb1b1ac516ec58 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120299 Tested-by: Ilmari Lauhakangas Reviewed-by: Ilmari Lauhakangas --- framework/inc/helper/statusindicatorfactory.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'framework') diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx index ca8cef12d5fe..3443bd881d25 100644 --- a/framework/inc/helper/statusindicatorfactory.hxx +++ b/framework/inc/helper/statusindicatorfactory.hxx @@ -184,8 +184,7 @@ class StatusIndicatorFactory final : public ::cppu::WeakImplHelper< virtual css::uno::Sequence SAL_CALL getSupportedServiceNames() override { - css::uno::Sequence< OUString > aSeq { "com.sun.star.task.StatusIndicatorFactory" }; - return aSeq; + return { "com.sun.star.task.StatusIndicatorFactory" }; } // XInitialization -- cgit