From a8e2f3e8454c1fd62f40e2def5204819893fde97 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sun, 5 Oct 2014 12:51:49 -0500 Subject: coverity#1231670 Unchecked return value Change-Id: I29a751b2d44e86ccf115015b0ede8bae2e702eea --- sc/source/ui/docshell/dbdocfun.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source') 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) { -- cgit