From 6e0b18ddde4310f85d3d6b7c27a93f78b541d976 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Fri, 11 Jan 2013 00:04:13 -0500 Subject: Makes no sense to 'continue' at the end of the block. Change-Id: I2b02430944c5c6ecf67d2b7cd02c66bb549c93f9 --- sc/source/ui/docshell/dbdocfun.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sc/source/ui/docshell/dbdocfun.cxx b/sc/source/ui/docshell/dbdocfun.cxx index 94d4f1f7a024..3b1db2f05e7a 100644 --- a/sc/source/ui/docshell/dbdocfun.cxx +++ b/sc/source/ui/docshell/dbdocfun.cxx @@ -1465,8 +1465,7 @@ sal_uLong ScDBDocFunc::RefreshPivotTables(ScDPObject* pDPObj, bool bApi) ScDPObject* pObj = *it; // This action is intentionally not undoable since it modifies cache. - if (!DataPilotUpdate(pObj, pObj, false, bApi)) - continue; + DataPilotUpdate(pObj, pObj, false, bApi); } return 0; -- cgit