svx/source/dialog/SafeModeUI.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit a364e1f039b0156306aa951e10632cd225b320a3
Author: dilekuzulmez <dilekuzul...@gmail.com>
Date:   Thu Feb 2 19:37:39 2017 +0300

    tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
    
    Change-Id: I2a48e513ad71609b11eb02eb5da7aa7d76860e7d
    Reviewed-on: https://gerrit.libreoffice.org/33841
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Michael Stahl <mst...@redhat.com>

diff --git a/svx/source/dialog/SafeModeUI.cxx b/svx/source/dialog/SafeModeUI.cxx
index b01cded..60a64fd 100644
--- a/svx/source/dialog/SafeModeUI.cxx
+++ b/svx/source/dialog/SafeModeUI.cxx
@@ -54,8 +54,7 @@ sal_Bool SAL_CALL SafeModeUI::supportsService(const OUString& 
sServiceName)
 
 css::uno::Sequence< OUString > SAL_CALL SafeModeUI::getSupportedServiceNames()
 {
-    css::uno::Sequence< OUString > lServiceNames { 
"com.sun.star.dialog.SafeModeUI" };
-    return lServiceNames;
+    return { "com.sun.star.dialog.SafeModeUI" };
 }
 
 css::uno::Any SAL_CALL SafeModeUI::dispatchWithReturnValue(const 
css::util::URL&,
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to