[Libreoffice-commits] core.git: sc/source
Tor Lillqvist
tml at collabora.com
Wed Jan 27 11:21:24 PST 2016
sc/source/core/data/formulacell.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 4d43f0c018c1f0fb12f55ebb16c074fb60a8aa73
Author: Tor Lillqvist <tml at collabora.com>
Date: Wed Jan 27 21:19:10 2016 +0200
tdf#96222: Better to avoid anything except MM_NONE, says Eike
I.e., avoid MM_REFERENCE, too.
Change-Id: I8a12dfbd921861f977427bf8b284e85f367c128d
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index 99e13f1..2531726 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;
More information about the Libreoffice-commits
mailing list