sc/source/core/tool/token.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5f5afecda386642aabf2365130629b6a237bf953
Author:     Eike Rathke <er...@redhat.com>
AuthorDate: Tue May 12 23:33:12 2020 +0200
Commit:     Eike Rathke <er...@redhat.com>
CommitDate: Wed May 13 00:23:51 2020 +0200

    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 <er...@redhat.com>
    Tested-by: Jenkins

diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 2e4977ced2ee..545ddc8dce08 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1258,7 +1258,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
                     {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to