filter/source/config/cache/configflush.cxx | 3 +-- filter/source/config/cache/contenthandlerfactory.cxx | 3 +-- filter/source/config/cache/filterfactory.cxx | 3 +-- filter/source/config/cache/frameloaderfactory.cxx | 3 +-- filter/source/config/cache/typedetection.cxx | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-)
New commits: commit 16f0bac2bf674e23b9f8d00f59f3d238dc3a5c8c Author: kerem <hallacke...@gmail.com> Date: Mon Feb 8 23:33:11 2016 +0200 tdf#88205 Delete 'css::uno::Sequence' in filter Change-Id: Ia1d933f3e2ccd68a3bfa433afdfc34895706f16c Reviewed-on: https://gerrit.libreoffice.org/22218 Tested-by: Jenkins <c...@libreoffice.org> Reviewed-by: Noel Grandin <noelgran...@gmail.com> diff --git a/filter/source/config/cache/configflush.cxx b/filter/source/config/cache/configflush.cxx index 6d40913..5820841 100644 --- a/filter/source/config/cache/configflush.cxx +++ b/filter/source/config/cache/configflush.cxx @@ -116,8 +116,7 @@ OUString ConfigFlush::impl_getImplementationName() css::uno::Sequence< OUString > ConfigFlush::impl_getSupportedServiceNames() { - css::uno::Sequence< OUString > lServiceNames { "com.sun.star.document.FilterConfigRefresh" }; - return lServiceNames; + return { "com.sun.star.document.FilterConfigRefresh" }; } diff --git a/filter/source/config/cache/contenthandlerfactory.cxx b/filter/source/config/cache/contenthandlerfactory.cxx index 4e1b2b4..d0a5ab8 100644 --- a/filter/source/config/cache/contenthandlerfactory.cxx +++ b/filter/source/config/cache/contenthandlerfactory.cxx @@ -154,8 +154,7 @@ OUString ContentHandlerFactory::impl_getImplementationName() css::uno::Sequence< OUString > ContentHandlerFactory::impl_getSupportedServiceNames() { - css::uno::Sequence< OUString > lServiceNames { "com.sun.star.frame.ContentHandlerFactory" }; - return lServiceNames; + return { "com.sun.star.frame.ContentHandlerFactory" }; } diff --git a/filter/source/config/cache/filterfactory.cxx b/filter/source/config/cache/filterfactory.cxx index 604476c..1b08d00 100644 --- a/filter/source/config/cache/filterfactory.cxx +++ b/filter/source/config/cache/filterfactory.cxx @@ -580,8 +580,7 @@ OUString FilterFactory::impl_getImplementationName() css::uno::Sequence< OUString > FilterFactory::impl_getSupportedServiceNames() { - css::uno::Sequence< OUString > lServiceNames { "com.sun.star.document.FilterFactory" }; - return lServiceNames; + return { "com.sun.star.document.FilterFactory" }; } diff --git a/filter/source/config/cache/frameloaderfactory.cxx b/filter/source/config/cache/frameloaderfactory.cxx index f53f0c9..bf42239 100644 --- a/filter/source/config/cache/frameloaderfactory.cxx +++ b/filter/source/config/cache/frameloaderfactory.cxx @@ -151,8 +151,7 @@ OUString FrameLoaderFactory::impl_getImplementationName() css::uno::Sequence< OUString > FrameLoaderFactory::impl_getSupportedServiceNames() { - css::uno::Sequence< OUString > lServiceNames { "com.sun.star.frame.FrameLoaderFactory" }; - return lServiceNames; + return { "com.sun.star.frame.FrameLoaderFactory" }; } diff --git a/filter/source/config/cache/typedetection.cxx b/filter/source/config/cache/typedetection.cxx index 19d2846..1170b79 100644 --- a/filter/source/config/cache/typedetection.cxx +++ b/filter/source/config/cache/typedetection.cxx @@ -1238,8 +1238,7 @@ OUString TypeDetection::impl_getImplementationName() css::uno::Sequence< OUString > TypeDetection::impl_getSupportedServiceNames() { - css::uno::Sequence< OUString > lServiceNames { "com.sun.star.document.TypeDetection" }; - return lServiceNames; + return { "com.sun.star.document.TypeDetection" }; } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits