Kaydet (Commit) c0fdab89 authored tarafından Eike Rathke's avatar Eike Rathke

resolved fdo#60366 make MATCH() accept a single cell reference

Change-Id: I7059abdb6232b95e0b940b34f74bf87182510146
üst 82e37608
...@@ -5045,6 +5045,12 @@ void ScInterpreter::ScMatch() ...@@ -5045,6 +5045,12 @@ void ScInterpreter::ScMatch()
switch (GetStackType()) switch (GetStackType())
{ {
case svSingleRef:
PopSingleRef( nCol1, nRow1, nTab1);
nCol2 = nCol1;
nRow2 = nRow1;
nTab2 = nTab1;
break;
case svDoubleRef: case svDoubleRef:
{ {
PopDoubleRef(nCol1, nRow1, nTab1, nCol2, nRow2, nTab2); PopDoubleRef(nCol1, nRow1, nTab1, nCol2, nRow2, nTab2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment