[Libreoffice-commits] core.git: configmgr/source
gozeloglu (via logerrit)
logerrit at kemper.freedesktop.org
Sun Nov 22 10:54:23 UTC 2020
configmgr/source/defaultprovider.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5ed43ebfbb9406040a2d8eb7869b051f3e99293a
Author: gozeloglu <gozeloglu at gmail.com>
AuthorDate: Sun Nov 22 10:07:28 2020 +0000
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Nov 22 11:53:51 2020 +0100
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: I39c4cd2474814e6033795e0dc3fcc7c18812d854
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106342
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/configmgr/source/defaultprovider.cxx b/configmgr/source/defaultprovider.cxx
index 59f02af38107..7161659e0fa6 100644
--- a/configmgr/source/defaultprovider.cxx
+++ b/configmgr/source/defaultprovider.cxx
@@ -46,7 +46,7 @@ OUString getImplementationName() { return "com.sun.star.comp.configuration.Defau
css::uno::Sequence<OUString> getSupportedServiceNames()
{
- return css::uno::Sequence<OUString>{ "com.sun.star.configuration.DefaultProvider" };
+ return { "com.sun.star.configuration.DefaultProvider" };
}
}
More information about the Libreoffice-commits
mailing list