[Libreoffice-commits] .: sc/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Jan 10 21:04:15 PST 2013


 sc/source/ui/docshell/dbdocfun.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 6e0b18ddde4310f85d3d6b7c27a93f78b541d976
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Fri Jan 11 00:04:13 2013 -0500

    Makes no sense to 'continue' at the end of the block.
    
    Change-Id: I2b02430944c5c6ecf67d2b7cd02c66bb549c93f9

diff --git a/sc/source/ui/docshell/dbdocfun.cxx b/sc/source/ui/docshell/dbdocfun.cxx
index 94d4f1f..3b1db2f 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;


More information about the Libreoffice-commits mailing list