diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-20 10:10:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-20 10:57:18 +0100 |
commit | 9f65dff35e0928cc705a255a40d41b82b38c4dc3 (patch) | |
tree | 6f1c4717bca5c1920f2d38276c79e40669bd86a3 /sd | |
parent | 0048a115219113bd6b5f0278b1b6a6ec7f44ad98 (diff) |
coverity#704010 Unchecked return value
Change-Id: I90750c51ce3b38defdba7ecdb7734172983efa8c
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/ppt/pptinanimations.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx index 1cc544079ec7..eba584d2252a 100644 --- a/sd/source/filter/ppt/pptinanimations.cxx +++ b/sd/source/filter/ppt/pptinanimations.cxx @@ -3062,7 +3062,7 @@ void AnimationImporter::importPropertySetContainer( const Atom* pAtom, PropertyS if( pChildAtom->getType() == DFF_msofbtAnimAttributeValue ) { Any aAny; - importAttributeValue( pChildAtom, aAny ); + (void)importAttributeValue( pChildAtom, aAny ); rSet.maProperties[ pChildAtom->getInstance() ] = aAny; } else |