diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-15 17:28:14 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-15 17:28:14 -0500 |
commit | ed950587b463d1c6da647f9ff8dea97f6987c54a (patch) | |
tree | fd58b5c36bb742f30a9dfe26c3456706de853eda /sc | |
parent | 3b1e88a8eb6b3f9da7c899a791e491db21d1bbdc (diff) |
Fixed hard re-calc. Manual re-calc still not working yet.
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |