diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2016-08-01 15:00:00 +0300 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-04 05:40:11 +0000 |
commit | 0bd4154b176af84e036c4f0869e635e9fcefed1c (patch) | |
tree | 36cde969568f1705faff9bfb5459b0ca54d0e465 /basegfx | |
parent | 51cf057f4e5277ef5ce99c76dd67aeff702a448e (diff) |
tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
in basctl, basegfx, canvas
Change-Id: I59383d2599793b99b560333387e163a3d80eecec
Reviewed-on: https://gerrit.libreoffice.org/27778
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/tools/unopolypolygon.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/basegfx/source/tools/unopolypolygon.cxx b/basegfx/source/tools/unopolypolygon.cxx index 2e12a9e82ae6..12e00a784422 100644 --- a/basegfx/source/tools/unopolypolygon.cxx +++ b/basegfx/source/tools/unopolypolygon.cxx @@ -448,9 +448,7 @@ namespace unotools uno::Sequence< OUString > SAL_CALL UnoPolyPolygon::getSupportedServiceNames() throw( uno::RuntimeException, std::exception ) { - uno::Sequence<OUString> aRet { SERVICE_NAME }; - - return aRet; + return { SERVICE_NAME }; } B2DPolyPolygon UnoPolyPolygon::getPolyPolygon() const |