diff options
author | Yousef_Rabia <yousef.mohamed.rabia@gmail.com> | 2023-03-14 23:29:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-03-15 10:49:54 +0000 |
commit | 08c283d63fa648f3db1ab6dddf9edb73f0c7194e (patch) | |
tree | 48bb47f073364a64c86e88dba58917cf5b935d95 /sc/source/ui/vba | |
parent | fcbf416dffdc8a9fbbbc41c07bfb4929a14c7099 (diff) |
tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: I37b5056026f29d2619a4f9d3da9251924c7f5fdd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148898
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/source/ui/vba')
-rw-r--r-- | sc/source/ui/vba/vbaeventshelper.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbaeventshelper.cxx b/sc/source/ui/vba/vbaeventshelper.cxx index 199c5493ef0b..9cfb3ab31b08 100644 --- a/sc/source/ui/vba/vbaeventshelper.cxx +++ b/sc/source/ui/vba/vbaeventshelper.cxx @@ -626,8 +626,7 @@ OUString ScVbaEventsHelper::getImplementationName() css::uno::Sequence<OUString> ScVbaEventsHelper::getSupportedServiceNames() { - return css::uno::Sequence<OUString>{ - "com.sun.star.script.vba.VBASpreadsheetEventProcessor"}; + return {"com.sun.star.script.vba.VBASpreadsheetEventProcessor"}; } // protected ------------------------------------------------------------------ |