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

New commits:
commit ed950587b463d1c6da647f9ff8dea97f6987c54a
Author: Kohei Yoshida <[email protected]>
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();
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to