summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorYusuf Keten <ketenyusuf@gmail.com>2020-01-11 18:43:19 +0300
committerStephan Bergmann <sbergman@redhat.com>2020-01-12 17:07:31 +0100
commitdd3e75758f9de9e08022938b5cc948c2a4417058 (patch)
treef99a97dea6e5b5548a8c93b00de2f15a38dc9fc4 /filter
parent202146901b6fbab923042d30f62b19992bf5179b (diff)
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: I9b285a80e0d52f412e2738995d66aa65cf93d16a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86606 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msvbahelper.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/filter/source/msfilter/msvbahelper.cxx b/filter/source/msfilter/msvbahelper.cxx
index a60e097bd067..8abe76511549 100644
--- a/filter/source/msfilter/msvbahelper.cxx
+++ b/filter/source/msfilter/msvbahelper.cxx
@@ -504,8 +504,7 @@ bool executeMacro( SfxObjectShell* pShell, const OUString& sMacroName, uno::Sequ
uno::Sequence< OUString > VBAMacroResolver_getSupportedServiceNames()
{
- uno::Sequence<OUString> aServiceNames { "com.sun.star.script.vba.VBAMacroResolver" };
- return aServiceNames;
+ return { "com.sun.star.script.vba.VBAMacroResolver" };
}
OUString VBAMacroResolver_getImplementationName()