formula/source/core/api/FormulaCompiler.cxx | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 61c72ef4bebebdfa505176e7d5db82920ad3822e Author: Eike Rathke <[email protected]> Date: Fri Feb 15 14:15:00 2013 +0100 ocColumn and ocRow do not need recalc on load, fdo#60645 related Change-Id: I34fc7af10aca3484d30b443c6b0257451a218ed5 diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index 21f8e97..eca4fb5 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -1067,6 +1067,8 @@ void FormulaCompiler::Factor() // If the referred cell is moved the value changes. case ocColumn : case ocRow : + pArr->SetRecalcModeOnRefMove(); + break; // ocCell needs recalc on move for some possible type values. // and recalc mode on load, fdo#60646 case ocCell : _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
