summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-11-15 13:17:00 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-15 12:20:39 +0000
commit96c26b0d9d10fa9bac3695222980d7145f0342d7 (patch)
treed2d2b4e60e8ec98ff4025abfad42be06d29b3c13 /extensions/source/propctrlr
parent25aec383f95fded43b3fe5fc588b4ebdc6d7d272 (diff)
use initialiser for Sequence<OUString>
using variations of: git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<OUString> (\w+)\(1\)\; \s*OUString\* pArray.*; .*\[0\]\s*=\s*(\S+)\;/Sequence<OUString> \1 { \2 };/g" Change-Id: I03c64334ff30ee14dce0d17b67f5122a3893bbe3 Reviewed-on: https://gerrit.libreoffice.org/19971 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'extensions/source/propctrlr')
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.cxx3
-rw-r--r--extensions/source/propctrlr/submissionhandler.cxx3
2 files changed, 2 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/eformspropertyhandler.cxx b/extensions/source/propctrlr/eformspropertyhandler.cxx
index 8d8e5143889b..d4870a456f99 100644
--- a/extensions/source/propctrlr/eformspropertyhandler.cxx
+++ b/extensions/source/propctrlr/eformspropertyhandler.cxx
@@ -398,8 +398,7 @@ namespace pcr
if ( !m_pHelper.get() )
return Sequence< OUString >();
- Sequence< OUString > aReturn( 1 );
- aReturn[ 0 ] = PROPERTY_INPUT_REQUIRED;
+ Sequence<OUString> aReturn { PROPERTY_INPUT_REQUIRED };
return aReturn;
}
diff --git a/extensions/source/propctrlr/submissionhandler.cxx b/extensions/source/propctrlr/submissionhandler.cxx
index 3c37ad044a03..f523cc7ad7f6 100644
--- a/extensions/source/propctrlr/submissionhandler.cxx
+++ b/extensions/source/propctrlr/submissionhandler.cxx
@@ -215,8 +215,7 @@ namespace pcr
if ( !m_pHelper.get() )
return Sequence< OUString >();
- Sequence< OUString > aReturn( 1 );
- aReturn[ 0 ] = PROPERTY_XFORMS_BUTTONTYPE;
+ Sequence<OUString> aReturn { PROPERTY_XFORMS_BUTTONTYPE };
return aReturn;
}