diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-01-11 00:04:13 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-01-11 00:05:28 -0500 |
commit | 6e0b18ddde4310f85d3d6b7c27a93f78b541d976 (patch) | |
tree | 3af8a8f8ffa9a13b3a0e49f0582619f39535a5ac /sc | |
parent | 3db92283955741b490dc2d4f9e1782b179fee894 (diff) |
Makes no sense to 'continue' at the end of the block.
Change-Id: I2b02430944c5c6ecf67d2b7cd02c66bb549c93f9
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/docshell/dbdocfun.cxx | 3 |
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; |