diff options
Diffstat (limited to 'stoc/source/implementationregistration/implreg.cxx')
-rw-r--r-- | stoc/source/implementationregistration/implreg.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx index 08bf4a8fafcb..886ead94c8b4 100644 --- a/stoc/source/implementationregistration/implreg.cxx +++ b/stoc/source/implementationregistration/implreg.cxx @@ -1301,8 +1301,7 @@ sal_Bool ImplementationRegistration::supportsService(const OUString& ServiceName // XServiceInfo Sequence< OUString > ImplementationRegistration::getSupportedServiceNames() throw(RuntimeException, std::exception) { - Sequence< OUString > seqNames(1); - seqNames[0] = "com.sun.star.registry.ImplementationRegistration"; + Sequence< OUString > seqNames { "com.sun.star.registry.ImplementationRegistration" }; return seqNames; } |