summaryrefslogtreecommitdiff
path: root/avmedia
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 /avmedia
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 'avmedia')
-rw-r--r--avmedia/source/gstreamer/gstmanager.cxx3
-rw-r--r--avmedia/source/gstreamer/gstplayer.cxx3
-rw-r--r--avmedia/source/gstreamer/gstwindow.cxx3
-rw-r--r--avmedia/source/quicktime/framegrabber.mm3
-rw-r--r--avmedia/source/quicktime/manager.mm3
-rw-r--r--avmedia/source/quicktime/player.mm3
-rw-r--r--avmedia/source/quicktime/window.mm3
-rw-r--r--avmedia/source/win/framegrabber.cxx3
-rw-r--r--avmedia/source/win/manager.cxx3
-rw-r--r--avmedia/source/win/player.cxx3
-rw-r--r--avmedia/source/win/window.cxx3
11 files changed, 11 insertions, 22 deletions
diff --git a/avmedia/source/gstreamer/gstmanager.cxx b/avmedia/source/gstreamer/gstmanager.cxx
index 1f0bc61d3a6f..d3617e5efb3c 100644
--- a/avmedia/source/gstreamer/gstmanager.cxx
+++ b/avmedia/source/gstreamer/gstmanager.cxx
@@ -92,8 +92,7 @@ sal_Bool SAL_CALL Manager::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL Manager::getSupportedServiceNames( )
throw (uno::RuntimeException, std::exception)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_GST_MANAGER_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_GST_MANAGER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/gstreamer/gstplayer.cxx b/avmedia/source/gstreamer/gstplayer.cxx
index ffac2987cb2e..6dd0f5c3538d 100644
--- a/avmedia/source/gstreamer/gstplayer.cxx
+++ b/avmedia/source/gstreamer/gstplayer.cxx
@@ -947,8 +947,7 @@ sal_Bool SAL_CALL Player::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL Player::getSupportedServiceNames()
throw (uno::RuntimeException, std::exception)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_GST_PLAYER_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_GST_PLAYER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/gstreamer/gstwindow.cxx b/avmedia/source/gstreamer/gstwindow.cxx
index bee5f0a7ff0c..fc2a8ee54032 100644
--- a/avmedia/source/gstreamer/gstwindow.cxx
+++ b/avmedia/source/gstreamer/gstwindow.cxx
@@ -234,8 +234,7 @@ sal_Bool SAL_CALL Window::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL Window::getSupportedServiceNames( )
throw (uno::RuntimeException, std::exception)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_GST_WINDOW_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_GST_WINDOW_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/quicktime/framegrabber.mm b/avmedia/source/quicktime/framegrabber.mm
index 401c17d0581d..9166d860c20c 100644
--- a/avmedia/source/quicktime/framegrabber.mm
+++ b/avmedia/source/quicktime/framegrabber.mm
@@ -128,8 +128,7 @@ sal_Bool SAL_CALL FrameGrabber::supportsService( const ::rtl::OUString& ServiceN
uno::Sequence< ::rtl::OUString > SAL_CALL FrameGrabber::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< ::rtl::OUString > aRet(1);
- aRet[0] = AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME;
+ uno::Sequence<OUString> aRet { AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/quicktime/manager.mm b/avmedia/source/quicktime/manager.mm
index 25ae118e9363..b7081844f783 100644
--- a/avmedia/source/quicktime/manager.mm
+++ b/avmedia/source/quicktime/manager.mm
@@ -79,8 +79,7 @@ sal_Bool SAL_CALL Manager::supportsService( const ::rtl::OUString& ServiceName )
uno::Sequence< ::rtl::OUString > SAL_CALL Manager::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< ::rtl::OUString > aRet(1);
- aRet[0] = AVMEDIA_QUICKTIME_MANAGER_SERVICENAME;
+ uno::Sequence<OUString> aRet { AVMEDIA_QUICKTIME_MANAGER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/quicktime/player.mm b/avmedia/source/quicktime/player.mm
index 9b84d96f8c62..5ef7568da3a8 100644
--- a/avmedia/source/quicktime/player.mm
+++ b/avmedia/source/quicktime/player.mm
@@ -391,8 +391,7 @@ sal_Bool SAL_CALL Player::supportsService( const ::rtl::OUString& ServiceName )
uno::Sequence< ::rtl::OUString > SAL_CALL Player::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< ::rtl::OUString > aRet(1);
- aRet[0] = AVMEDIA_QUICKTIME_PLAYER_SERVICENAME;
+ uno::Sequence<OUString> aRet { AVMEDIA_QUICKTIME_PLAYER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/quicktime/window.mm b/avmedia/source/quicktime/window.mm
index 683610d995ca..93b70c250a33 100644
--- a/avmedia/source/quicktime/window.mm
+++ b/avmedia/source/quicktime/window.mm
@@ -268,8 +268,7 @@ sal_Bool SAL_CALL Window::supportsService( const ::rtl::OUString& ServiceName )
uno::Sequence< ::rtl::OUString > SAL_CALL Window::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< ::rtl::OUString > aRet(1);
- aRet[0] = AVMEDIA_QUICKTIME_WINDOW_SERVICENAME;
+ uno::Sequence<OUString> aRet { AVMEDIA_QUICKTIME_WINDOW_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/win/framegrabber.cxx b/avmedia/source/win/framegrabber.cxx
index 9ef404778213..4d6305c8ca12 100644
--- a/avmedia/source/win/framegrabber.cxx
+++ b/avmedia/source/win/framegrabber.cxx
@@ -213,8 +213,7 @@ sal_Bool SAL_CALL FrameGrabber::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL FrameGrabber::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_WIN_FRAMEGRABBER_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_WIN_FRAMEGRABBER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/win/manager.cxx b/avmedia/source/win/manager.cxx
index bab1b5bf6580..d33c9c8949bd 100644
--- a/avmedia/source/win/manager.cxx
+++ b/avmedia/source/win/manager.cxx
@@ -70,8 +70,7 @@ sal_Bool SAL_CALL Manager::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL Manager::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_WIN_MANAGER_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_WIN_MANAGER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx
index b04eaf99ab3f..61b073d0dee2 100644
--- a/avmedia/source/win/player.cxx
+++ b/avmedia/source/win/player.cxx
@@ -476,8 +476,7 @@ sal_Bool SAL_CALL Player::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL Player::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_WIN_PLAYER_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_WIN_PLAYER_SERVICENAME };
return aRet;
}
diff --git a/avmedia/source/win/window.cxx b/avmedia/source/win/window.cxx
index 1c1660c54a9d..341ea6a52ce9 100644
--- a/avmedia/source/win/window.cxx
+++ b/avmedia/source/win/window.cxx
@@ -597,8 +597,7 @@ sal_Bool SAL_CALL Window::supportsService( const OUString& ServiceName )
uno::Sequence< OUString > SAL_CALL Window::getSupportedServiceNames( )
throw (uno::RuntimeException)
{
- uno::Sequence< OUString > aRet(1);
- aRet[0] = AVMEDIA_WIN_WINDOW_SERVICENAME ;
+ uno::Sequence<OUString> aRet { AVMEDIA_WIN_WINDOW_SERVICENAME };
return aRet;
}