summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-06-08 09:14:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-06-08 13:24:11 +0200
commit1e56a952cecabcaa04fa442c7891ca67e9d4601a (patch)
treebaa2364ea20ea4d13b4bf02c018ea0a8da3308a2 /sc
parent46ea7c5d8be6b3e9436a44240117f83808d9d4c1 (diff)
cid#1485887 Unchecked return value
Change-Id: Ie7cf188ef4aa72ea5266b0925363c904b4a7812c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116814 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/excel/xiescher.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xiescher.cxx b/sc/source/filter/excel/xiescher.cxx
index 8afe83370ceb..c928ac37cf29 100644
--- a/sc/source/filter/excel/xiescher.cxx
+++ b/sc/source/filter/excel/xiescher.cxx
@@ -740,7 +740,7 @@ void XclImpDrawObjBase::ConvertFillStyle( SdrObject& rSdrObj, const XclObjFillDa
aMemStrm.WriteUInt32( pnPattern[ nIdx ] ); // 32-bit little-endian
aMemStrm.Seek( STREAM_SEEK_TO_BEGIN );
Bitmap aBitmap;
- ReadDIB(aBitmap, aMemStrm, false);
+ (void)ReadDIB(aBitmap, aMemStrm, false);
XOBitmap aXOBitmap(( BitmapEx(aBitmap) ));
aXOBitmap.Bitmap2Array();