diff options
author | Mesut Çifci <mesutcifci97@gmail.com> | 2020-01-10 17:06:33 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-13 10:41:01 +0100 |
commit | 4a372929c82e894601ab243a507061e1cfc6a59d (patch) | |
tree | 35c9641642d677126af89ef90d814607938aa54f /ucb/source/ucp | |
parent | 467e355c6a947e12bc23b6d93e1a2cc0c778dc71 (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: I7342275928e0231062f378942c567fe993b2a271
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86544
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb/source/ucp')
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx index 10b5441aa64f..07a65d6bda09 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -406,8 +406,7 @@ OUString SAL_CALL Content::getImplementationName() // virtual uno::Sequence< OUString > SAL_CALL Content::getSupportedServiceNames() { - uno::Sequence<OUString> aSNS { WEBDAV_CONTENT_SERVICE_NAME }; - return aSNS; + return { WEBDAV_CONTENT_SERVICE_NAME }; } |