summaryrefslogtreecommitdiff
path: root/canvas/source/vcl/canvasbitmap.cxx
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-08-01 15:00:00 +0300
committerNoel Grandin <noelgrandin@gmail.com>2016-08-04 05:40:11 +0000
commit0bd4154b176af84e036c4f0869e635e9fcefed1c (patch)
tree36cde969568f1705faff9bfb5459b0ca54d0e465 /canvas/source/vcl/canvasbitmap.cxx
parent51cf057f4e5277ef5ce99c76dd67aeff702a448e (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 'canvas/source/vcl/canvasbitmap.cxx')
-rw-r--r--canvas/source/vcl/canvasbitmap.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/canvas/source/vcl/canvasbitmap.cxx b/canvas/source/vcl/canvasbitmap.cxx
index 562e8a46196b..84b3adc7ef0b 100644
--- a/canvas/source/vcl/canvasbitmap.cxx
+++ b/canvas/source/vcl/canvasbitmap.cxx
@@ -86,9 +86,7 @@ namespace vclcanvas
uno::Sequence< OUString > SAL_CALL CanvasBitmap::getSupportedServiceNames( ) throw (uno::RuntimeException, std::exception)
{
- uno::Sequence< OUString > aRet { "com.sun.star.rendering.CanvasBitmap" };
-
- return aRet;
+ return { "com.sun.star.rendering.CanvasBitmap" };
}
BitmapEx CanvasBitmap::getBitmap() const