vcl/source/graphic/UnoGraphicObject.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 56ace1c8728ffc9f34901497fa907818412046ea
Author:     Emircan Agac <thesad...@gmail.com>
AuthorDate: Mon Aug 9 11:59:07 2021 +0300
Commit:     Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
CommitDate: Thu Aug 12 12:54:11 2021 +0200

    tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor
    
    Change-Id: Ifce4c42df52ce03ed1c509d9fc28de79f5b3426c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120199
    Tested-by: Jenkins
    Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>

diff --git a/vcl/source/graphic/UnoGraphicObject.cxx 
b/vcl/source/graphic/UnoGraphicObject.cxx
index 978983715a1c..73bbcef3ec8e 100644
--- a/vcl/source/graphic/UnoGraphicObject.cxx
+++ b/vcl/source/graphic/UnoGraphicObject.cxx
@@ -60,7 +60,7 @@ public:
 
     virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() 
override
     {
-        return uno::Sequence<OUString> { "com.sun.star.graphic.GraphicObject" 
};
+        return { "com.sun.star.graphic.GraphicObject" };
     }
 };
 

Reply via email to