diff options
author | Mesut Çifci <mesutcifci97@gmail.com> | 2020-01-14 00:19:58 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-14 09:55:15 +0100 |
commit | edc748c9be3037a88c0f37ace160946e4fbd2a2d (patch) | |
tree | b5c073911fae04c7150b2df2c3f419506329ceb8 /stoc/source | |
parent | 2b3c96a03f2e3c12148ec00c93f06e093d384db9 (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: I42b59c9d22edb987c55aace700934fdab95f83f7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86719
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'stoc/source')
-rw-r--r-- | stoc/source/typeconv/convert.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stoc/source/typeconv/convert.cxx b/stoc/source/typeconv/convert.cxx index 37d6c63e3d4b..97cb4bebd62c 100644 --- a/stoc/source/typeconv/convert.cxx +++ b/stoc/source/typeconv/convert.cxx @@ -251,8 +251,7 @@ sal_Bool TypeConverter_Impl::supportsService(const OUString& ServiceName) // XServiceInfo Sequence< OUString > TypeConverter_Impl::getSupportedServiceNames() { - Sequence< OUString > seqNames { "com.sun.star.script.Converter" }; - return seqNames; + return { "com.sun.star.script.Converter" }; } |