diff options
author | Zeynep Yavuz <zeynepyavuz2001@hotmail.com> | 2021-08-11 00:22:51 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2021-08-12 18:03:20 +0200 |
commit | d55de29c165e34b8a9ccb7ebf79f76a601103977 (patch) | |
tree | 792b7dbd2fdaab313f921cc69a102b46b3220237 /framework | |
parent | 1aed4ae13d511de38bd9d350a75b917546617891 (diff) |
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 <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/helper/statusindicatorfactory.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
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<OUString> SAL_CALL getSupportedServiceNames() override { - css::uno::Sequence< OUString > aSeq { "com.sun.star.task.StatusIndicatorFactory" }; - return aSeq; + return { "com.sun.star.task.StatusIndicatorFactory" }; } // XInitialization |