diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-05-27 21:58:04 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2013-05-28 09:39:55 +0000 |
commit | c05cfe8396ba3581432290e018265c92c4701ded (patch) | |
tree | 72aef61c10a8c52b5ef2dd9417557aab18c2d23e | |
parent | 276508a97d9d5a03169d3d8906e5a6d3ff3d0b0b (diff) |
restore old behavior for external references, fdo#64229
Change-Id: Iae160607447ff6e1133f9e1e6f9c6a9f1e7bd7ab
Reviewed-on: https://gerrit.libreoffice.org/4062
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
-rw-r--r-- | sc/source/core/tool/interpr1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index 994bc2b2b9a1..5ee90faf3c24 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -5490,7 +5490,7 @@ double ScInterpreter::IterateParametersIf( ScIterFuncIf eFunc ) case svExternalSingleRef: case svExternalDoubleRef: { - pQueryMatrix = PopMatrix(); + pQueryMatrix = GetMatrix(); if (!pQueryMatrix) { SetError( errIllegalParameter); |