From 86555baa2b0e7af2e1ac9f2af40781de91708375 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 29 May 2018 21:09:54 +0200 Subject: Bitmap->BitmapEx in FixedBitmap Change-Id: I0e409beb0d046d927b6a0c1987abec42df76727d Reviewed-on: https://gerrit.libreoffice.org/55032 Tested-by: Jenkins Reviewed-by: Noel Grandin --- fpicker/source/office/iodlg.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpicker/source/office/iodlg.cxx') diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 880e27834a82..6ccb634bf73f 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -2611,17 +2611,17 @@ void SvtFileDialog::setImage( sal_Int16 /*aImageFormat*/, const Any& rImage ) if ( rImage >>= aBmpSequence ) { - Bitmap aBmp; + BitmapEx aBmp; SvMemoryStream aData( aBmpSequence.getArray(), aBmpSequence.getLength(), StreamMode::READ ); - ReadDIB(aBmp, aData, true); + ReadDIBBitmapEx(aBmp, aData); _pPrevBmp->SetBitmap( aBmp ); } else { - Bitmap aEmpty; + BitmapEx aEmpty; _pPrevBmp->SetBitmap( aEmpty ); } } -- cgit