Fixed hard re-calc. Manual re-calc still not working yet.
This commit is contained in:
parent
3b1e88a8eb
commit
ed950587b4
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue