unoxml/source/rdf/CLiteral.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 7902ac9fbcdbaefa5ec4e7d8d07c240aecad346a Author: Dilek Uzulmez <[email protected]> Date: Wed May 17 16:02:24 2017 +0300 tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor Change-Id: I37ab94954f30ad24418ee7453911557ded4f5ee8 Reviewed-on: https://gerrit.libreoffice.org/37707 Tested-by: Jenkins <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/unoxml/source/rdf/CLiteral.cxx b/unoxml/source/rdf/CLiteral.cxx index fc1b2044ec3d..a922dc874397 100644 --- a/unoxml/source/rdf/CLiteral.cxx +++ b/unoxml/source/rdf/CLiteral.cxx @@ -179,8 +179,7 @@ OUString SAL_CALL _getImplementationName() { css::uno::Sequence< OUString > SAL_CALL _getSupportedServiceNames() { - css::uno::Sequence< OUString > s { "com.sun.star.rdf.Literal" }; - return s; + return { "com.sun.star.rdf.Literal" }; } css::uno::Reference< css::uno::XInterface > SAL_CALL _create( _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
