summaryrefslogtreecommitdiff
path: root/linguistic/source
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-11-15 12:22:28 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-15 12:18:55 +0000
commit25aec383f95fded43b3fe5fc588b4ebdc6d7d272 (patch)
tree846cce228d7ff120abc40b7767b251c2e04b2a30 /linguistic/source
parent35f5833ca35dc170b67ed9f8e288302eb06eb972 (diff)
use initialiser for Sequence<OUString>
replaced using: git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<\s*OUString\s*> (\w+)\(\s*1\s*\); .*\[0\] = (\S+);/Sequence<OUString> \1 { \2 };/g" Change-Id: I20ad0489da887a9712982531c3b127339bb8b3b9 Reviewed-on: https://gerrit.libreoffice.org/19969 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'linguistic/source')
-rw-r--r--linguistic/source/convdiclist.cxx3
-rw-r--r--linguistic/source/gciterator.cxx3
2 files changed, 2 insertions, 4 deletions
diff --git a/linguistic/source/convdiclist.cxx b/linguistic/source/convdiclist.cxx
index 7c6bd23dbbe8..305b51c7ffc5 100644
--- a/linguistic/source/convdiclist.cxx
+++ b/linguistic/source/convdiclist.cxx
@@ -610,8 +610,7 @@ uno::Sequence< OUString > SAL_CALL ConvDicList::getSupportedServiceNames()
uno::Sequence< OUString > ConvDicList::getSupportedServiceNames_Static()
throw()
{
- uno::Sequence< OUString > aSNS( 1 );
- aSNS.getArray()[0] = SN_CONV_DICTIONARY_LIST;
+ uno::Sequence<OUString> aSNS { SN_CONV_DICTIONARY_LIST };
return aSNS;
}
diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx
index 3e5cb556d66a..50d2bf50ac5c 100644
--- a/linguistic/source/gciterator.cxx
+++ b/linguistic/source/gciterator.cxx
@@ -1139,8 +1139,7 @@ static OUString GrammarCheckingIterator_getImplementationName() throw()
static uno::Sequence< OUString > GrammarCheckingIterator_getSupportedServiceNames() throw()
{
- uno::Sequence< OUString > aSNS( 1 );
- aSNS[0] = "com.sun.star.linguistic2.ProofreadingIterator";
+ uno::Sequence<OUString> aSNS { "com.sun.star.linguistic2.ProofreadingIterator" };
return aSNS;
}