diff options
author | Mesut Çifci <mesutcifci97@gmail.com> | 2020-01-16 10:52:24 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-16 18:20:40 +0100 |
commit | 3b9495f82c5eb371b747bc9424c29c49e7a45a67 (patch) | |
tree | 214a1363c55345b77162f55d2a7fbdac12adb693 /extensions | |
parent | 494a1eb0c818eb41122ea9ba46144723ce6d8251 (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ic6ed5dcf6343a4ff59a1f69c77c82b03b4ee6198
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86904
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/bibliography/framectr.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/source/bibliography/framectr.cxx b/extensions/source/bibliography/framectr.cxx index fc963e1f149c..694d2c31a78c 100644 --- a/extensions/source/bibliography/framectr.cxx +++ b/extensions/source/bibliography/framectr.cxx @@ -181,8 +181,7 @@ css::uno::Sequence< OUString > SAL_CALL BibFrameController_Impl::getSupportedSer { // return only top level services ... // base services are included there and should be asked by uno-rtti. - css::uno::Sequence< OUString > lNames { "com.sun.star.frame.Bibliography" }; - return lNames; + return { "com.sun.star.frame.Bibliography" }; } void BibFrameController_Impl::attachFrame( const uno::Reference< XFrame > & xArg ) |