diff options
author | Onur Yilmaz <onuryilmaz0750@gmail.com> | 2020-01-27 23:59:35 +0300 |
---|---|---|
committer | Muhammet Kara <muhammet.kara@collabora.com> | 2020-01-28 21:21:58 +0100 |
commit | 9359d9a94d446fc40c5f98fcdbc3086ecba1f830 (patch) | |
tree | 25489372bc819274432b48721660159f7d7bc135 /extensions/source | |
parent | 627e40b9ef7ba8e9b5b06adc4a553d95cd5e5560 (diff) |
tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ie5a381fc5e5b73490ab8b2036ef2a1164e475e8f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87557
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/propctrlr/propcontroller.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx index 3cfd255ad1b7..54b6a1bea66a 100644 --- a/extensions/source/propctrlr/propcontroller.cxx +++ b/extensions/source/propctrlr/propcontroller.cxx @@ -545,8 +545,7 @@ namespace pcr Sequence< OUString > OPropertyBrowserController::getSupportedServiceNames_static( ) { - Sequence< OUString > aSupported { "com.sun.star.inspection.ObjectInspector" }; - return aSupported; + return { "com.sun.star.inspection.ObjectInspector" }; } |