diff options
author | homeboy445 <akshitsan13@gmail.com> | 2020-12-14 18:46:26 +0530 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-12-20 16:14:19 +0100 |
commit | e37e990650694d7d3a44a38a6bf23751bb33da67 (patch) | |
tree | 17cddc3c3ff8888b0e9e2408bb2d20b0246317e1 /framework | |
parent | e3fe4a46104d9379bca3302fd9ed3883915f2d80 (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ib40fc069105cbf93c617055a7c6fe466570f0b32
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107844
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/fwe/classes/rootactiontriggercontainer.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/source/fwe/classes/rootactiontriggercontainer.cxx b/framework/source/fwe/classes/rootactiontriggercontainer.cxx index 8ce69fde740a..4181011db25a 100644 --- a/framework/source/fwe/classes/rootactiontriggercontainer.cxx +++ b/framework/source/fwe/classes/rootactiontriggercontainer.cxx @@ -206,8 +206,7 @@ sal_Bool SAL_CALL RootActionTriggerContainer::supportsService( const OUString& S Sequence< OUString > SAL_CALL RootActionTriggerContainer::getSupportedServiceNames() { - Sequence< OUString > seqServiceNames { SERVICENAME_ACTIONTRIGGERCONTAINER }; - return seqServiceNames; + return { SERVICENAME_ACTIONTRIGGERCONTAINER }; } // XUnoTunnel |