summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/documentiologring.cxx3
-rw-r--r--comphelper/source/misc/officerestartmanager.cxx3
-rw-r--r--comphelper/source/property/genericpropertyset.cxx3
-rw-r--r--comphelper/source/streaming/seqinputstreamserv.cxx3
-rw-r--r--comphelper/source/streaming/seqoutputstreamserv.cxx3
5 files changed, 5 insertions, 10 deletions
diff --git a/comphelper/source/misc/documentiologring.cxx b/comphelper/source/misc/documentiologring.cxx
index b08beac8ceef..fea9257d17eb 100644
--- a/comphelper/source/misc/documentiologring.cxx
+++ b/comphelper/source/misc/documentiologring.cxx
@@ -49,8 +49,7 @@ OSimpleLogRing::~OSimpleLogRing()
uno::Sequence< OUString > SAL_CALL OSimpleLogRing::getSupportedServiceNames_static()
{
- uno::Sequence< OUString > aResult( 1 );
- aResult[0] = getServiceName_static();
+ uno::Sequence<OUString> aResult { getServiceName_static() };
return aResult;
}
diff --git a/comphelper/source/misc/officerestartmanager.cxx b/comphelper/source/misc/officerestartmanager.cxx
index bb58209209da..fe7b1590bf65 100644
--- a/comphelper/source/misc/officerestartmanager.cxx
+++ b/comphelper/source/misc/officerestartmanager.cxx
@@ -36,8 +36,7 @@ namespace comphelper
uno::Sequence< OUString > SAL_CALL OOfficeRestartManager::getSupportedServiceNames_static()
{
- uno::Sequence< OUString > aResult( 1 );
- aResult[0] = getServiceName_static();
+ uno::Sequence<OUString> aResult { getServiceName_static() };
return aResult;
}
diff --git a/comphelper/source/property/genericpropertyset.cxx b/comphelper/source/property/genericpropertyset.cxx
index 383c26762c94..42b3a9f71b97 100644
--- a/comphelper/source/property/genericpropertyset.cxx
+++ b/comphelper/source/property/genericpropertyset.cxx
@@ -256,8 +256,7 @@ OUString SAL_CALL GenericPropertySet::getImplementationName() throw( RuntimeExce
Sequence< OUString > SAL_CALL GenericPropertySet::getSupportedServiceNames( )
throw( RuntimeException, std::exception )
{
- Sequence< OUString > aSNS( 1 );
- aSNS.getArray()[0] = "com.sun.star.beans.XPropertySet";
+ Sequence<OUString> aSNS { "com.sun.star.beans.XPropertySet" };
return aSNS;
}
diff --git a/comphelper/source/streaming/seqinputstreamserv.cxx b/comphelper/source/streaming/seqinputstreamserv.cxx
index 306a5e68d283..f5b5f3bcb0d5 100644
--- a/comphelper/source/streaming/seqinputstreamserv.cxx
+++ b/comphelper/source/streaming/seqinputstreamserv.cxx
@@ -112,8 +112,7 @@ uno::Sequence< OUString > SAL_CALL SequenceInputStreamService::getSupportedServi
uno::Sequence< OUString > SAL_CALL SequenceInputStreamService::getSupportedServiceNames_static()
{
- uno::Sequence< OUString > s( 1 );
- s[0] = "com.sun.star.io.SequenceInputStream";
+ uno::Sequence<OUString> s { "com.sun.star.io.SequenceInputStream" };
return s;
}
diff --git a/comphelper/source/streaming/seqoutputstreamserv.cxx b/comphelper/source/streaming/seqoutputstreamserv.cxx
index 65f2fa75b891..7340b5808f32 100644
--- a/comphelper/source/streaming/seqoutputstreamserv.cxx
+++ b/comphelper/source/streaming/seqoutputstreamserv.cxx
@@ -99,8 +99,7 @@ uno::Sequence< OUString > SAL_CALL SequenceOutputStreamService::getSupportedServ
uno::Sequence< OUString > SAL_CALL SequenceOutputStreamService::getSupportedServiceNames_static()
{
- uno::Sequence< OUString > s( 1 );
- s[0] = "com.sun.star.io.SequenceOutputStream";
+ uno::Sequence<OUString> s { "com.sun.star.io.SequenceOutputStream" };
return s;
}