[Libreoffice-commits] core.git: xmlsecurity/source
Ahmet Hakan Ãelik (via logerrit)
logerrit at kemper.freedesktop.org
Wed Apr 14 09:07:41 UTC 2021
xmlsecurity/source/framework/saxeventkeeperimpl.cxx | 3 +--
xmlsecurity/source/framework/signaturecreatorimpl.cxx | 3 +--
xmlsecurity/source/framework/signatureverifierimpl.cxx | 3 +--
3 files changed, 3 insertions(+), 6 deletions(-)
New commits:
commit 348595440143b210f55bfa541ab3f853d468f19f
Author: Ahmet Hakan Çelik <ahmethcelik at gmail.com>
AuthorDate: Sun Mar 7 19:06:33 2021 +0300
Commit: Michael Stahl <michael.stahl at allotropia.de>
CommitDate: Wed Apr 14 11:07:06 2021 +0200
tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ie7507e6beb470708bb4e52a7b926433043b80d85
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112133
Tested-by: Jenkins
Reviewed-by: John Turpish <jbt at gmx.us>
Reviewed-by: Michael Stahl <michael.stahl at allotropia.de>
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
index b0c03880348f..5e2f697d64ac 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
@@ -1131,8 +1131,7 @@ OUString SAXEventKeeperImpl_getImplementationName ()
css::uno::Sequence< OUString > SAXEventKeeperImpl_getSupportedServiceNames( )
{
- css::uno::Sequence<OUString> aRet { "com.sun.star.xml.crypto.sax.SAXEventKeeper" };
- return aRet;
+ return { "com.sun.star.xml.crypto.sax.SAXEventKeeper" };
}
/* XServiceInfo */
diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.cxx b/xmlsecurity/source/framework/signaturecreatorimpl.cxx
index 826f800409f6..ca90abe9a004 100644
--- a/xmlsecurity/source/framework/signaturecreatorimpl.cxx
+++ b/xmlsecurity/source/framework/signaturecreatorimpl.cxx
@@ -153,8 +153,7 @@ OUString SignatureCreatorImpl_getImplementationName ()
css::uno::Sequence< OUString > SignatureCreatorImpl_getSupportedServiceNames( )
{
- css::uno::Sequence<OUString> aRet { "com.sun.star.xml.crypto.sax.SignatureCreator" };
- return aRet;
+ return { "com.sun.star.xml.crypto.sax.SignatureCreator" };
}
/* XServiceInfo */
diff --git a/xmlsecurity/source/framework/signatureverifierimpl.cxx b/xmlsecurity/source/framework/signatureverifierimpl.cxx
index 4e9dc08af972..489e8348604c 100644
--- a/xmlsecurity/source/framework/signatureverifierimpl.cxx
+++ b/xmlsecurity/source/framework/signatureverifierimpl.cxx
@@ -109,8 +109,7 @@ OUString SignatureVerifierImpl_getImplementationName ()
css::uno::Sequence< OUString > SignatureVerifierImpl_getSupportedServiceNames( )
{
- css::uno::Sequence<OUString> aRet { "com.sun.star.xml.crypto.sax.SignatureVerifier" };
- return aRet;
+ return { "com.sun.star.xml.crypto.sax.SignatureVerifier" };
}
/* XServiceInfo */
More information about the Libreoffice-commits
mailing list