summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2018-06-05 10:49:07 +0200
committerEike Rathke <erack@redhat.com>2018-06-05 16:25:28 +0200
commit6083c974531afe0d9a80c5e3d5f883f194703684 (patch)
tree464ae4da5feac31281e22ae5b606f5f0a30b2009 /include
parentfb63ec23b4ae3cff771934714f0bad003123cdd0 (diff)
Add "Unsupported inline array content." BadArrayContent message, tdf#117879
Change-Id: I176884ea5161c4f12419431a74bfb2c6fbed4e0f Reviewed-on: https://gerrit.libreoffice.org/55317 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins <ci@libreoffice.org> (cherry picked from commit 5870cf6d9b42094dfda3dbf85817003e021d6559) Reviewed-on: https://gerrit.libreoffice.org/55324
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 41bffa4d9ef9..d4324a998db0 100644
--- a/include/formula/errorcodes.hxx
+++ b/include/formula/errorcodes.hxx
@@ -81,6 +81,8 @@ enum class FormulaError : sal_uInt16
RetryCircular = 537,
// If matrix could not be allocated.
MatrixSize = 538,
+// Bad inline array content, non-value/non-string.
+ BadArrayContent = 539,
// Interpreter: NA() not available condition, not a real error
NotAvailable = 0x7fff
@@ -159,6 +161,7 @@ inline bool isPublishedFormulaError( FormulaError nErr )
case FormulaError::NoMacro:
case FormulaError::DivisionByZero:
case FormulaError::NestedArray:
+ case FormulaError::BadArrayContent:
return true;
case FormulaError::NotNumericString: