summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-07-08 11:25:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-07-08 12:58:51 +0200
commit7707cba0bd3f1d544ead634282f8d3415af0cd5e (patch)
treeac931af938a4fad99f8d96c479451b623ea4b037 /svx
parentf7e4a52411255b61e8fcc4172e67c9f86cf25e36 (diff)
use BitmapEx in ImpSdrPdfImport::ImportImage
Change-Id: I80e197ffcda4ebc5d50e611b7a4a5c3fd84fc839 Reviewed-on: https://gerrit.libreoffice.org/75201 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdpdf.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpdf.cxx b/svx/source/svdraw/svdpdf.cxx
index 687c3e260341..552575442039 100644
--- a/svx/source/svdraw/svdpdf.cxx
+++ b/svx/source/svdraw/svdpdf.cxx
@@ -992,7 +992,7 @@ void ImpSdrPdfImport::ImportImage(FPDF_PAGEOBJECT pPageObject, int /*nPageObject
const int nWidth = FPDFBitmap_GetWidth(bitmap.get());
const int nHeight = FPDFBitmap_GetHeight(bitmap.get());
const int nStride = FPDFBitmap_GetStride(bitmap.get());
- Bitmap aBitmap(Size(nWidth, nHeight), 24);
+ BitmapEx aBitmap(Size(nWidth, nHeight), 24);
switch (format)
{