[Libreoffice-commits] core.git: stoc/source
Efdal Ä°ncesu (via logerrit)
logerrit at kemper.freedesktop.org
Tue Jan 28 08:57:20 UTC 2020
stoc/source/loader/dllcomponentloader.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit c8a27f91dad1d84da76f0862954956570b56a602
Author: Efdal İncesu <efdal_incesu at hotmail.com>
AuthorDate: Tue Jan 28 10:28:24 2020 +0300
Commit: Muhammet Kara <muhammet.kara at collabora.com>
CommitDate: Tue Jan 28 09:56:42 2020 +0100
tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ie23019fe0b86f16820dd68c647c4ce15bbbb42dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87575
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara at collabora.com>
diff --git a/stoc/source/loader/dllcomponentloader.cxx b/stoc/source/loader/dllcomponentloader.cxx
index fe88d1b74746..43f20ad0a5e4 100644
--- a/stoc/source/loader/dllcomponentloader.cxx
+++ b/stoc/source/loader/dllcomponentloader.cxx
@@ -86,8 +86,7 @@ sal_Bool SAL_CALL DllComponentLoader::supportsService( const OUString& ServiceNa
Sequence<OUString> SAL_CALL DllComponentLoader::getSupportedServiceNames( )
{
- Sequence< OUString > seqNames { "com.sun.star.loader.SharedLibrary" };
- return seqNames;
+ return { "com.sun.star.loader.SharedLibrary" };
}
More information about the Libreoffice-commits
mailing list