summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-26 15:16:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-26 15:51:59 +0100
commit9c2b19c926b65fff2fcbea2b0e970aa499432410 (patch)
treea18a915836f197587a7cd78cb23fe5d4f1a9cb28 /comphelper
parent0897a5a8c538d9c7a8949d1f9fbe426523b95533 (diff)
coverity#703930 Unchecked return value
Change-Id: Ifa4091eb08774309829ec9016b19e71cf9ea201a
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/propagg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx
index bee4e70126cc..bf23a413588f 100644
--- a/comphelper/source/property/propagg.cxx
+++ b/comphelper/source/property/propagg.cxx
@@ -626,7 +626,7 @@ sal_Int32 OPropertySetAggregationHelper::getOriginalHandle(sal_Int32 nHandle) co
{
OPropertyArrayAggregationHelper& rPH = (OPropertyArrayAggregationHelper&)const_cast<OPropertySetAggregationHelper*>(this)->getInfoHelper();
sal_Int32 nOriginalHandle = -1;
- rPH.fillAggregatePropertyInfoByHandle(NULL, &nOriginalHandle, nHandle);
+ (void)rPH.fillAggregatePropertyInfoByHandle(NULL, &nOriginalHandle, nHandle);
return nOriginalHandle;
}