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 /i18npool | |
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 'i18npool')
-rw-r--r-- | i18npool/source/ordinalsuffix/ordinalsuffix.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/i18npool/source/ordinalsuffix/ordinalsuffix.cxx b/i18npool/source/ordinalsuffix/ordinalsuffix.cxx index 69cf0cad795e..6f7f966cbe01 100644 --- a/i18npool/source/ordinalsuffix/ordinalsuffix.cxx +++ b/i18npool/source/ordinalsuffix/ordinalsuffix.cxx @@ -148,8 +148,7 @@ sal_Bool SAL_CALL OrdinalSuffixService::supportsService( const OUString& rServic Sequence< OUString > SAL_CALL OrdinalSuffixService::getSupportedServiceNames() { - Sequence< OUString > aRet { cOrdinalSuffix }; - return aRet; + return { cOrdinalSuffix }; } } |