From 54d22957bc241fc5867fa1c720cf1266133e4e90 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 15 Nov 2015 12:17:19 +0200 Subject: use initialiser for Sequence performed using: git grep -lP 'Sequence.*OUString.*\(1\)' | xargs perl -0777 -pi -e "s/Sequence (\w+)\(1\); .*\[0\] = (\S+);/Sequence \1 { \2 };/g" Change-Id: I4da56c80fa09bfc1e8f868794001e9921431e09f Reviewed-on: https://gerrit.libreoffice.org/19968 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- extensions/source/propctrlr/MasterDetailLinkDialog.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'extensions/source/propctrlr/MasterDetailLinkDialog.cxx') diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx index 4f374975effe..c8a7af329925 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx @@ -72,8 +72,7 @@ namespace pcr css::uno::Sequence MasterDetailLinkDialog::getSupportedServiceNames_static() throw(RuntimeException) { - css::uno::Sequence aSupported(1); - aSupported[0] = "com.sun.star.form.MasterDetailLinkDialog"; + css::uno::Sequence aSupported { "com.sun.star.form.MasterDetailLinkDialog" }; return aSupported; } -- cgit