diff options
author | Mesut Çifci <mesutcifci97@gmail.com> | 2020-01-28 12:05:53 +0300 |
---|---|---|
committer | Muhammet Kara <muhammet.kara@collabora.com> | 2020-01-28 21:14:19 +0100 |
commit | e3bc524629acfdd57898fb11f108fac88ac37be7 (patch) | |
tree | 135d36d525520c715e05d67eb361b5d38fa88618 /connectivity/source | |
parent | 49edbe3651521c030ea3956ee683649e4d158398 (diff) |
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 <muhammet.kara@collabora.com>
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/commontools/ParameterSubstitution.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
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" }; } |