From d4442ac1ac9aae36dbc08fda8154d71ea0f81708 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 30 May 2018 13:02:25 +0200 Subject: drop Graphic::GetBitmap so that we flush out various code using Bitmap, in favour of using BitmapEx. This is part of the process of making Bitmap largely an internal detail of vcl Change-Id: Iaf2ead5e3d9960838723fb55b812b97108093d74 Reviewed-on: https://gerrit.libreoffice.org/55062 Tested-by: Jenkins Reviewed-by: Noel Grandin --- cppcanvas/source/mtfrenderer/emfpimage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cppcanvas') diff --git a/cppcanvas/source/mtfrenderer/emfpimage.cxx b/cppcanvas/source/mtfrenderer/emfpimage.cxx index e3f1fc3d31a3..e249d5c1acca 100644 --- a/cppcanvas/source/mtfrenderer/emfpimage.cxx +++ b/cppcanvas/source/mtfrenderer/emfpimage.cxx @@ -59,7 +59,7 @@ namespace cppcanvas GraphicFilter filter; filter.ImportGraphic(graphic, OUString(), s); - SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << graphic.GetBitmap().GetSizePixel().Width() << " height: " << graphic.GetBitmap().GetSizePixel().Height()); + SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << graphic.GetSizePixel().Width() << " height: " << graphic.GetSizePixel().Height()); } } -- cgit