summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-11 09:18:40 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-11 11:02:08 +0000
commit67031e8dc06c411622039392d41e7caf94a93766 (patch)
treeb18327491e1b6d6acdd5c5dd0fcd703fee15a55d /sc/source
parentf9b08152350f4db9db6e9f7ec326630e3eab06c1 (diff)
coverity#703983 Unchecked return value
Change-Id: I83fe85a50e6e98da02a7c46a9e0c07a043244d56
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/data/table4.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/table4.cxx b/sc/source/core/data/table4.cxx
index f3789c7b3262..276842937af1 100644
--- a/sc/source/core/data/table4.cxx
+++ b/sc/source/core/data/table4.cxx
@@ -362,7 +362,7 @@ void ScTable::FillAnalyse( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
rListData = (ScUserListData*)(ScGlobal::GetUserList()->GetData(aStr));
if (rListData)
{
- rListData->GetSubIndex(aStr, rListIndex);
+ (void)rListData->GetSubIndex(aStr, rListIndex);
nCol = sal::static_int_cast<SCCOL>( nCol + nAddX );
nRow = sal::static_int_cast<SCROW>( nRow + nAddY );
for (sal_uInt16 i=1; i<nCount && rListData; i++)