diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-28 09:25:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-28 13:49:44 +0100 |
commit | bbb598aeff2fb552beb2251f8de9333aae79f0ad (patch) | |
tree | 34bc06f1c86d22ba335659ff47f7466cfb2e1cd2 /cui | |
parent | 3a45897d301c2eb356ef57df0542726afeb8a4ae (diff) |
coverity#703935 Unchecked return value
Change-Id: I9300af5f9c2c430d0e67bfb8e16478db6be65477
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/cuigrfflt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/cuigrfflt.cxx b/cui/source/dialogs/cuigrfflt.cxx index 53da9daf4a12..4c8b79fd8b62 100644 --- a/cui/source/dialogs/cuigrfflt.cxx +++ b/cui/source/dialogs/cuigrfflt.cxx @@ -234,7 +234,7 @@ Graphic GraphicFilterMosaic::GetFilteredGraphic( const Graphic& rGraphic, if( aBmpEx.Filter( BMP_FILTER_MOSAIC, &aParam ) ) { if( IsEnhanceEdges() ) - aBmpEx.Filter( BMP_FILTER_SHARPEN ); + (void)aBmpEx.Filter( BMP_FILTER_SHARPEN ); aRet = aBmpEx; } |