summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-01-27 21:19:10 +0200
committerTor Lillqvist <tml@collabora.com>2016-01-27 21:19:10 +0200
commit4d43f0c018c1f0fb12f55ebb16c074fb60a8aa73 (patch)
treeb4874345cee078433aef8997285ed25357747484
parent3962a56378f4c82ad788c45c34ce82114efb10d2 (diff)
tdf#96222: Better to avoid anything except MM_NONE, says Eike
I.e., avoid MM_REFERENCE, too. Change-Id: I8a12dfbd921861f977427bf8b284e85f367c128d
-rw-r--r--sc/source/core/data/formulacell.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index 99e13f1899e1..25317265920c 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -3958,7 +3958,7 @@ bool ScFormulaCell::InterpretFormulaGroup()
return false;
}
- if (cMatrixFlag == MM_FORMULA)
+ if (cMatrixFlag != MM_NONE)
{
mxGroup->meCalcState = sc::GroupCalcDisabled;
return false;