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.lauhakangas@libreoffice.org>
diff --git a/vcl/source/graphic/UnoGraphicObject.cxx b/vcl/source/graphic/UnoGraphicObject.cxx
index 9789837..73bbcef 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" };
    }
};