diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-05-29 21:09:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-05-30 08:40:05 +0200 |
commit | 86555baa2b0e7af2e1ac9f2af40781de91708375 (patch) | |
tree | 468525116f88009c15c5ffeb80e16fa9a517b496 /fpicker | |
parent | 7873bba6c1e5de580ef28d0ecf68d154dd57e726 (diff) |
Bitmap->BitmapEx in FixedBitmap
Change-Id: I0e409beb0d046d927b6a0c1987abec42df76727d
Reviewed-on: https://gerrit.libreoffice.org/55032
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 ); } } |