diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-10 21:21:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-11 11:02:07 +0000 |
commit | 43df355a86b1db8c11e6a42c06131d97626f04a5 (patch) | |
tree | 69e72d3b1d08d75849ee572fee8cdf69e5a37061 /sd | |
parent | ca7b0ec3ae14a82059e3e26868411f1720b5f2e9 (diff) |
coverity#704009 Unchecked return value
Change-Id: I8f5c37c99d81811f94f3f1b4e863be1de7debaec
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 eba584d2252a..62d1b4e6b695 100644 --- a/sd/source/filter/ppt/pptinanimations.cxx +++ b/sd/source/filter/ppt/pptinanimations.cxx @@ -2609,7 +2609,7 @@ void AnimationImporter::importAnimateKeyPoints( const Atom* pAtom, const Referen { pValue = pAtom->findNextChildAtom(pValue); if( pValue && pValue->getType() == DFF_msofbtAnimAttributeValue ) - importAttributeValue( pValue, aValue2 ); + (void)importAttributeValue( pValue, aValue2 ); bool bCouldBeFormula = false; bool bHasValue = aValue2.hasValue(); |