From ed950587b463d1c6da647f9ff8dea97f6987c54a Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 15 Nov 2011 17:28:14 -0500 Subject: [PATCH] Fixed hard re-calc. Manual re-calc still not working yet. --- sc/source/core/data/document.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx index 40e85d742d19..de225f46ba7c 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();