summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/unoobj/appluno.cxx4
-rw-r--r--sc/source/ui/unoobj/miscuno.cxx4
-rw-r--r--sc/source/ui/unoobj/shapeuno.cxx3
3 files changed, 3 insertions, 8 deletions
diff --git a/sc/source/ui/unoobj/appluno.cxx b/sc/source/ui/unoobj/appluno.cxx
index c0e61a78db8d..c1d847d4008d 100644
--- a/sc/source/ui/unoobj/appluno.cxx
+++ b/sc/source/ui/unoobj/appluno.cxx
@@ -195,9 +195,7 @@ OUString ScSpreadsheetSettings::getImplementationName_Static()
uno::Sequence<OUString> ScSpreadsheetSettings::getSupportedServiceNames_Static()
{
- uno::Sequence<OUString> aRet(1);
- OUString* pArray = aRet.getArray();
- pArray[0] = SCSPREADSHEETSETTINGS_SERVICE;
+ uno::Sequence<OUString> aRet { SCSPREADSHEETSETTINGS_SERVICE };
return aRet;
}
diff --git a/sc/source/ui/unoobj/miscuno.cxx b/sc/source/ui/unoobj/miscuno.cxx
index a1149acb3bca..848ec7b69adf 100644
--- a/sc/source/ui/unoobj/miscuno.cxx
+++ b/sc/source/ui/unoobj/miscuno.cxx
@@ -233,9 +233,7 @@ css::uno::Sequence< OUString >
SAL_CALL ScIndexEnumeration::getSupportedServiceNames()
throw(css::uno::RuntimeException, std::exception)
{
- css::uno::Sequence< OUString > aRet(1);
- OUString* pArray = aRet.getArray();
- pArray[0] = sServiceName;
+ css::uno::Sequence<OUString> aRet { sServiceName };
return aRet;
}
diff --git a/sc/source/ui/unoobj/shapeuno.cxx b/sc/source/ui/unoobj/shapeuno.cxx
index 019f576376be..7b68557c944c 100644
--- a/sc/source/ui/unoobj/shapeuno.cxx
+++ b/sc/source/ui/unoobj/shapeuno.cxx
@@ -1444,8 +1444,7 @@ public:
virtual uno::Sequence< OUString > SAL_CALL getElementNames() throw(uno::RuntimeException, std::exception) override
{
- uno::Sequence< OUString > aSeq( 1 );
- aSeq[ 0 ] = SC_EVENTACC_ONCLICK;
+ uno::Sequence<OUString> aSeq { SC_EVENTACC_ONCLICK };
return aSeq;
}