[Libreoffice-commits] core.git: sc/source
Tor Lillqvist
tml at collabora.com
Wed Jan 27 05:34:10 PST 2016
sc/source/core/data/formulacell.cxx | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit aee3355a8a7a6b7749f2eddd74e9389fe5782186
Author: Tor Lillqvist <tml at collabora.com>
Date: Wed Jan 27 15:14:39 2016 +0200
tdf#96222: Don't attempt to handle matrix formulas as formula groups
(Also known as array formulas.)
Change-Id: Ief61c75efb05ea7c880d05e118d9fe10177774db
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index b311d7c..99e13f1 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -3958,6 +3958,12 @@ bool ScFormulaCell::InterpretFormulaGroup()
return false;
}
+ if (cMatrixFlag == MM_FORMULA)
+ {
+ mxGroup->meCalcState = sc::GroupCalcDisabled;
+ return false;
+ }
+
switch (pCode->GetVectorState())
{
case FormulaVectorEnabled:
More information about the Libreoffice-commits
mailing list