diff options
author | Mesut Çifci <mesutcifci97@gmail.com> | 2020-01-14 14:35:40 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-15 14:52:04 +0100 |
commit | 15abfe9ae976a0d940725cdd570facc372981393 (patch) | |
tree | 5d8c7d7d3987a421720df709ae45902ccee491ba /connectivity | |
parent | 52fece12345161911da2a531213b7d5541192aad (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: Ice7c0ecc8ee05a5c3b0af458ceeee8191bdde322
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86752
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/Column.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/Column.cxx b/connectivity/source/drivers/firebird/Column.cxx index 31767bf9c4b5..aa8abf9bb75c 100644 --- a/connectivity/source/drivers/firebird/Column.cxx +++ b/connectivity/source/drivers/firebird/Column.cxx @@ -45,9 +45,7 @@ void Column::construct() css::uno::Sequence< OUString > SAL_CALL Column::getSupportedServiceNames( ) { - css::uno::Sequence< OUString > aSupported { "com.sun.star.sdbc.Firebird" }; - - return aSupported; + return { "com.sun.star.sdbc.Firebird" }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |