diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 12:29:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 15:06:34 +0000 |
commit | 459e080067370f1ddda55cdf43e13d9e1cf551fe (patch) | |
tree | 4fa8dbf68d255e4536ce1eee5a32ee070e8a62a9 | |
parent | 313e304b67b519c7208d11a511c3b14a3369d297 (diff) |
coverity#704090 Unchecked return value
going to assume that this is correct
Change-Id: I47072dc668f200eacf0f6a6d7ccdad0c9d6bfa68
-rw-r--r-- | vcl/source/gdi/animate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/animate.cxx b/vcl/source/gdi/animate.cxx index 308f1fecd48d..7288847527cb 100644 --- a/vcl/source/gdi/animate.cxx +++ b/vcl/source/gdi/animate.cxx @@ -684,7 +684,7 @@ bool Animation::Filter( BmpFilter eFilter, const BmpFilterParam* pFilterParam, c for( size_t i = 0, n = maList.size(); ( i < n ) && bRet; ++i ) bRet = maList[ i ]->aBmpEx.Filter( eFilter, pFilterParam, pProgress ); - maBitmapEx.Filter( eFilter, pFilterParam, pProgress ); + (void)maBitmapEx.Filter(eFilter, pFilterParam, pProgress); } else bRet = false; |