diff options
Diffstat (limited to 'fpicker/source/office/iodlg.cxx')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 1ed7a8c6db89..f4c8d3a9ba87 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -71,6 +71,7 @@ #include <comphelper/string.hxx> #include <osl/file.h> +#include <vcl/dibtools.hxx> #include <vcl/waitobj.hxx> #include <com/sun/star/task/InteractionHandler.hpp> @@ -3024,7 +3025,7 @@ void SvtFileDialog::setImage( sal_Int16 /*aImageFormat*/, const Any& rImage ) SvMemoryStream aData( aBmpSequence.getArray(), aBmpSequence.getLength(), STREAM_READ ); - aData >> aBmp; + ReadDIB(aBmp, aData, true); _pPrevBmp->SetBitmap( aBmp ); } |