connectivity/source/commontools/ParameterSubstitution.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit e3bc524629acfdd57898fb11f108fac88ac37be7 Author: Mesut Çifci <[email protected]> AuthorDate: Tue Jan 28 12:05:53 2020 +0300 Commit: Muhammet Kara <[email protected]> CommitDate: Tue Jan 28 21:14:19 2020 +0100 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor Change-Id: Ic759fd9e741cb2ca305b9bbf3ce71585c6801057 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87590 Tested-by: Jenkins Reviewed-by: Muhammet Kara <[email protected]> diff --git a/connectivity/source/commontools/ParameterSubstitution.cxx b/connectivity/source/commontools/ParameterSubstitution.cxx index a5796261c995..9adf63a93a73 100644 --- a/connectivity/source/commontools/ParameterSubstitution.cxx +++ b/connectivity/source/commontools/ParameterSubstitution.cxx @@ -62,8 +62,7 @@ namespace connectivity Sequence< OUString > ParameterSubstitution::getSupportedServiceNames_Static( ) { - Sequence<OUString> aSNS { "com.sun.star.sdb.ParameterSubstitution" }; - return aSNS; + return { "com.sun.star.sdb.ParameterSubstitution" }; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
