diff options
author | nienzu <tommy.wu@ossii.com.tw> | 2020-05-23 17:32:13 +0800 |
---|---|---|
committer | Michael Stahl <michael.stahl@cib.de> | 2020-06-05 11:34:10 +0200 |
commit | c1e157b58f3e5e907f61008387973451b7ba31dc (patch) | |
tree | f00fd2aa18f8b1819a3a47829f0cc35d49395047 /cui | |
parent | c04fcba163c77f3036a581af6b33d6383a277637 (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ic61c1d5829b510a71b8d444f29ffed36ee540ea8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94717
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/colorpicker.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/dialogs/colorpicker.cxx b/cui/source/dialogs/colorpicker.cxx index 65f03fb3a046..d85213b3ee1c 100644 --- a/cui/source/dialogs/colorpicker.cxx +++ b/cui/source/dialogs/colorpicker.cxx @@ -1252,8 +1252,7 @@ Reference< XInterface > ColorPicker_createInstance( Reference< XComponentContext Sequence< OUString > ColorPicker_getSupportedServiceNames() { - Sequence< OUString > seq { "com.sun.star.ui.dialogs.ColorPicker" }; - return seq; + return { "com.sun.star.ui.dialogs.ColorPicker" }; } static const OUStringLiteral gsColorKey( "Color" ); |