diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 12:22:28 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-15 12:18:55 +0000 |
commit | 25aec383f95fded43b3fe5fc588b4ebdc6d7d272 (patch) | |
tree | 846cce228d7ff120abc40b7767b251c2e04b2a30 /vcl | |
parent | 35f5833ca35dc170b67ed9f8e288302eb06eb972 (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 'vcl')
-rw-r--r-- | vcl/source/components/dtranscomp.cxx | 6 | ||||
-rw-r--r-- | vcl/unx/generic/dtrans/config.cxx | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/vcl/source/components/dtranscomp.cxx b/vcl/source/components/dtranscomp.cxx index 60c530de6493..4d5c3d4a7a7c 100644 --- a/vcl/source/components/dtranscomp.cxx +++ b/vcl/source/components/dtranscomp.cxx @@ -302,8 +302,7 @@ public: static Sequence< OUString > getSupportedServiceNames_static() { - Sequence< OUString > aRet( 1 ); - aRet[0] = "com.sun.star.datatransfer.dnd.GenericDragSource"; + Sequence<OUString> aRet { "com.sun.star.datatransfer.dnd.GenericDragSource" }; return aRet; } @@ -417,8 +416,7 @@ public: static Sequence< OUString > getSupportedServiceNames_static() { - Sequence< OUString > aRet( 1 ); - aRet[0] = "com.sun.star.datatransfer.dnd.GenericDropTarget"; + Sequence<OUString> aRet { "com.sun.star.datatransfer.dnd.GenericDropTarget" }; return aRet; } diff --git a/vcl/unx/generic/dtrans/config.cxx b/vcl/unx/generic/dtrans/config.cxx index 802659af4b40..10db3f0dc24d 100644 --- a/vcl/unx/generic/dtrans/config.cxx +++ b/vcl/unx/generic/dtrans/config.cxx @@ -70,8 +70,7 @@ DtransX11ConfigItem::DtransX11ConfigItem() : ConfigItemMode::DelayedUpdate ), m_nSelectionTimeout( 3 ) { - Sequence< OUString > aKeys( 1 ); - aKeys.getArray()[0] = SELECTION_PROPERTY; + Sequence<OUString> aKeys { SELECTION_PROPERTY }; Sequence< Any > aValues = GetProperties( aKeys ); #if OSL_DEBUG_LEVEL > 1 fprintf( stderr, "found %" SAL_PRIdINT32 " properties for %s\n", aValues.getLength(), SELECTION_PROPERTY ); |