summaryrefslogtreecommitdiff
path: root/avmedia/source/opengl/oglwindow.cxx
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-08-01 14:05:42 +0300
committerNoel Grandin <noelgrandin@gmail.com>2016-08-04 05:47:28 +0000
commit7f01cf67f8181836430fd3c8433e8bf2f55c95f2 (patch)
tree983d4518f878f76d5c3057313afc7f2e17d84288 /avmedia/source/opengl/oglwindow.cxx
parente5e7475febbca460c30eaf4959d3282688383ef2 (diff)
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
in SoundHandler, FrameGrabber, Manager, MissingPluginInstaller, and several classes in 'avmedia' module. Change-Id: I9ab42d2ef95f3b0c724a7be9eb9e2389336a6f38 Reviewed-on: https://gerrit.libreoffice.org/27777 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'avmedia/source/opengl/oglwindow.cxx')
-rw-r--r--avmedia/source/opengl/oglwindow.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/avmedia/source/opengl/oglwindow.cxx b/avmedia/source/opengl/oglwindow.cxx
index a9ef414a55f3..5c08d74df4d2 100644
--- a/avmedia/source/opengl/oglwindow.cxx
+++ b/avmedia/source/opengl/oglwindow.cxx
@@ -70,8 +70,7 @@ sal_Bool SAL_CALL OGLWindow::supportsService( const OUString& rServiceName ) thr
uno::Sequence< OUString > SAL_CALL OGLWindow::getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception)
{
- uno::Sequence< OUString > aRet { "com.sun.star.media.Window_OpenGL" };
- return aRet;
+ return { "com.sun.star.media.Window_OpenGL" };
}
void SAL_CALL OGLWindow::dispose() throw (uno::RuntimeException, std::exception)