diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-14 21:48:45 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-14 21:50:27 +0100 |
commit | 9c55eab0309681991eae7382b682c26550786f56 (patch) | |
tree | 1b88d9702e34c0a16b43a785ead92ed9728f0cee /formula | |
parent | 6b3ecd1140456cc8eb4e5df59743be46351a1ae0 (diff) |
CELL needs to be recalculated during import as well, fdo#60645
Change-Id: If981199f01d4b33270d82c65fb033fa51222fb62
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index 8323e15acff4..c4e6cb163e28 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -1067,8 +1067,10 @@ void FormulaCompiler::Factor() case ocColumn : case ocRow : // ocCell needs recalc on move for some possible type values. + // and recalc mode on load, fdo#60646 case ocCell : pArr->SetRecalcModeOnRefMove(); + pArr->SetRecalcModeOnLoad(); break; case ocHyperLink : // cell with hyperlink needs to be calculated on load to |