diff options
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/container/enumerablemap.cxx | 3 | ||||
-rw-r--r-- | comphelper/source/property/opropertybag.cxx | 3 | ||||
-rw-r--r-- | comphelper/source/streaming/memorystream.cxx | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/comphelper/source/container/enumerablemap.cxx b/comphelper/source/container/enumerablemap.cxx index 897bd020ac3a..583a22785359 100644 --- a/comphelper/source/container/enumerablemap.cxx +++ b/comphelper/source/container/enumerablemap.cxx @@ -672,8 +672,7 @@ namespace comphelper Sequence< OUString > SAL_CALL EnumerableMap::getSupportedServiceNames_static( ) { - Sequence< OUString > aServiceNames(1); - aServiceNames[0] = "com.sun.star.container.EnumerableMap"; + Sequence< OUString > aServiceNames { "com.sun.star.container.EnumerableMap" }; return aServiceNames; } diff --git a/comphelper/source/property/opropertybag.cxx b/comphelper/source/property/opropertybag.cxx index 269c63a22d6b..b31c61744899 100644 --- a/comphelper/source/property/opropertybag.cxx +++ b/comphelper/source/property/opropertybag.cxx @@ -78,8 +78,7 @@ namespace comphelper Sequence< OUString > OPropertyBag::getSupportedServiceNames_static() throw( RuntimeException ) { - Sequence< OUString > aServices(1); - aServices[0] = "com.sun.star.beans.PropertyBag"; + Sequence< OUString > aServices { "com.sun.star.beans.PropertyBag" }; return aServices; } diff --git a/comphelper/source/streaming/memorystream.cxx b/comphelper/source/streaming/memorystream.cxx index 89f3d8a5d7c6..35b99a80dc8c 100644 --- a/comphelper/source/streaming/memorystream.cxx +++ b/comphelper/source/streaming/memorystream.cxx @@ -219,8 +219,7 @@ OUString SAL_CALL UNOMemoryStream::getImplementationName_static() Sequence< OUString > SAL_CALL UNOMemoryStream::getSupportedServiceNames_static() { - Sequence< OUString > aSeq(1); - aSeq[0] = getImplementationName_static(); + Sequence< OUString > aSeq { getImplementationName_static() }; return aSeq; } |