summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-01-11 00:04:13 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-01-11 00:05:28 -0500
commit6e0b18ddde4310f85d3d6b7c27a93f78b541d976 (patch)
tree3af8a8f8ffa9a13b3a0e49f0582619f39535a5ac
parent3db92283955741b490dc2d4f9e1782b179fee894 (diff)
Makes no sense to 'continue' at the end of the block.
Change-Id: I2b02430944c5c6ecf67d2b7cd02c66bb549c93f9
-rw-r--r--sc/source/ui/docshell/dbdocfun.cxx3
1 files changed, 1 insertions, 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;