diff options
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 ); } } |