summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2020-05-12 23:33:12 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-05-13 08:41:29 +0200
commit905f16f6f0e8ef356bc5fe5a35708b0cc5407135 (patch)
treef701221ebee572be1f117c2dc43621e141e96a3b
parent3ee652e1c18186a5de47797aa4b02defcb29c210 (diff)
Resolves: tdf#132173 handle API sequence to inline array token correctly
The API token of an inline array is always a two dimensional matrix. Regression from commit 3f80ac477354f4c6293d983d3ca9eef59a07dce0 CommitDate: Wed Apr 1 08:40:39 2015 +0200 Replace remaining getCppuType et al with cppu::UnoType Change-Id: I9ab2a807d29847fb843625b898ab8bbd005fab2c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94085 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins (cherry picked from commit 5f5afecda386642aabf2365130629b6a237bf953) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93996 Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--sc/source/core/tool/token.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 1b141b207c76..6617ccc13656 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1256,7 +1256,7 @@ bool ScTokenArray::AddFormulaToken(
if ( eOpCode != ocPush )
bError = true; // not an inline array
else if (!rToken.Data.getValueType().equals( cppu::UnoType<
- uno::Sequence< uno::Any >>::get()))
+ uno::Sequence< uno::Sequence< uno::Any >>>::get()))
bError = true; // unexpected sequence type
else
{