summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-10-05 12:51:49 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-10-05 13:26:09 -0500
commita8e2f3e8454c1fd62f40e2def5204819893fde97 (patch)
treeacbae57d8e7ea337dc25c6d578887380b2681db6 /sc/source
parentc6b619e1e82c3cfadd9ce6f9f85f4054959ecffd (diff)
coverity#1231670 Unchecked return value
Change-Id: I29a751b2d44e86ccf115015b0ede8bae2e702eea
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/docshell/dbdocfun.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/dbdocfun.cxx b/sc/source/ui/docshell/dbdocfun.cxx
index 2b438ce93c72..bed565a34524 100644
--- a/sc/source/ui/docshell/dbdocfun.cxx
+++ b/sc/source/ui/docshell/dbdocfun.cxx
@@ -397,7 +397,7 @@ bool ScDBDocFunc::RepeatDB( const OUString& rDBName, bool bRecord, bool bApi, bo
if (bSort)
{
pDBData->GetSortParam( aSortParam ); // Bereich kann sich geaendert haben
- Sort( nTab, aSortParam, false, false, bApi );
+ (void)Sort( nTab, aSortParam, false, false, bApi );
}
if (bQuery)
{