summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-01-19 00:18:21 +0100
committerEike Rathke <erack@redhat.com>2016-01-19 00:34:17 +0100
commitac00b3c256933e667f022a49854a05e40e3d0630 (patch)
treeddfbbb7a4bfb0a2b5a6cbd82e247e321cc75e297 /include
parentd5d8320ba1fba493e0e091fd46207ea7a34cc9e7 (diff)
tdf#88737 handle temporary array formula matrix circular reference
This does not solve the difference in how Excel seems to handle the arguments and calculation, but some corner case. See bug comment 6. Change-Id: Ifa331e8552587c40e1486a08093ed0df92a9d245
Diffstat (limited to 'include')
-rw-r--r--include/formula/errorcodes.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/formula/errorcodes.hxx b/include/formula/errorcodes.hxx
index 0f5fdad44320..e2279f3e163b 100644
--- a/include/formula/errorcodes.hxx
+++ b/include/formula/errorcodes.hxx
@@ -78,6 +78,9 @@ const sal_uInt16 errJumpMatHasResult = 535;
// string or empty, to be distinguished from the general errNoValue NAN and not
// to be used as result.
const sal_uInt16 errElementNaN = 536;
+// ScInterpreter/ScFormulaCell internal: keep dirty, retry interpreting next
+// round.
+const sal_uInt16 errRetryCircular = 537;
// Interpreter: NA() not available condition, not a real error
const sal_uInt16 NOTAVAILABLE = 0x7fff;