summaryrefslogtreecommitdiff
path: root/svtools/source/graphic
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/graphic')
-rw-r--r--svtools/source/graphic/graphicunofactory.cxx4
-rw-r--r--svtools/source/graphic/provider.cxx3
-rw-r--r--svtools/source/graphic/renderer.cxx3
3 files changed, 3 insertions, 7 deletions
diff --git a/svtools/source/graphic/graphicunofactory.cxx b/svtools/source/graphic/graphicunofactory.cxx
index 3d50e86172d1..eb8b75305a4d 100644
--- a/svtools/source/graphic/graphicunofactory.cxx
+++ b/svtools/source/graphic/graphicunofactory.cxx
@@ -61,9 +61,7 @@ public:
virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception) override
{
- uno::Sequence< OUString > aRet(1);
- OUString* pArray = aRet.getArray();
- pArray[0] = "com.sun.star.graphic.GraphicObject";
+ uno::Sequence<OUString> aRet { "com.sun.star.graphic.GraphicObject" };
return aRet;
}
};
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx
index d13cae8b7474..cce56d148ecb 100644
--- a/svtools/source/graphic/provider.cxx
+++ b/svtools/source/graphic/provider.cxx
@@ -76,8 +76,7 @@ sal_Bool SAL_CALL GraphicProvider::supportsService( const OUString& ServiceName
uno::Sequence< OUString > SAL_CALL GraphicProvider::getSupportedServiceNames()
throw( uno::RuntimeException, std::exception )
{
- uno::Sequence< OUString > aSeq( 1 );
- aSeq.getArray()[ 0 ] = "com.sun.star.graphic.GraphicProvider";
+ uno::Sequence<OUString> aSeq { "com.sun.star.graphic.GraphicProvider" };
return aSeq;
}
diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx
index 593f8e12b504..d717522fb223 100644
--- a/svtools/source/graphic/renderer.cxx
+++ b/svtools/source/graphic/renderer.cxx
@@ -123,8 +123,7 @@ sal_Bool SAL_CALL GraphicRendererVCL::supportsService( const OUString& ServiceNa
uno::Sequence< OUString > SAL_CALL GraphicRendererVCL::getSupportedServiceNames()
throw( uno::RuntimeException, std::exception )
{
- uno::Sequence< OUString > aSeq( 1 );
- aSeq.getArray()[ 0 ] = "com.sun.star.graphic.GraphicRendererVCL";
+ uno::Sequence<OUString> aSeq { "com.sun.star.graphic.GraphicRendererVCL" };
return aSeq;
}