diff options
Diffstat (limited to 'canvas/source/tools/cachedprimitivebase.cxx')
-rw-r--r-- | canvas/source/tools/cachedprimitivebase.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/canvas/source/tools/cachedprimitivebase.cxx b/canvas/source/tools/cachedprimitivebase.cxx index 02bf2ea7e9f1..23f801eb6807 100644 --- a/canvas/source/tools/cachedprimitivebase.cxx +++ b/canvas/source/tools/cachedprimitivebase.cxx @@ -91,8 +91,7 @@ namespace canvas uno::Sequence< OUString > SAL_CALL CachedPrimitiveBase::getSupportedServiceNames( ) throw (uno::RuntimeException, std::exception) { - uno::Sequence< OUString > aRet(1); - aRet[0] = "com.sun.star.rendering.CachedBitmap"; + uno::Sequence< OUString > aRet { "com.sun.star.rendering.CachedBitmap" }; return aRet; } |