[Libreoffice-commits] .: sc/source

Kohei Yoshida kohei at kemper.freedesktop.org
Tue Nov 15 14:28:43 PST 2011


 sc/source/core/data/document.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ed950587b463d1c6da647f9ff8dea97f6987c54a
Author: Kohei Yoshida <kohei.yoshida at suse.com>
Date:   Tue Nov 15 17:28:14 2011 -0500

    Fixed hard re-calc.  Manual re-calc still not working yet.

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 40e85d7..de225f4 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -3411,7 +3411,7 @@ void ScDocument::CalcAll()
     for (; it != maTabs.end(); ++it)
         if (*it)
             (*it)->SetDirtyVar();
-    for (; it != maTabs.end(); ++it)
+    for (it = maTabs.begin(); it != maTabs.end(); ++it)
         if (*it)
             (*it)->CalcAll();
     ClearFormulaTree();


More information about the Libreoffice-commits mailing list