Commit 50820e20 authored by konovalovsergey's avatar konovalovsergey

for bug 20175.

CellAddress(*,*,0)
parent bf6764dc
...@@ -1270,9 +1270,9 @@ parserHelp.setDigitSeparator(AscCommon.g_oDefaultCultureInfo.NumberDecimalSepara ...@@ -1270,9 +1270,9 @@ parserHelp.setDigitSeparator(AscCommon.g_oDefaultCultureInfo.NumberDecimalSepara
var cross = r.cross(arg); var cross = r.cross(arg);
if (cross) { if (cross) {
if (undefined !== cross.r) { if (undefined !== cross.r) {
return this.getValue2(new CellAddress(cross.r, this.getBBox0().c1)); return this.getValue2(new CellAddress(cross.r, this.getBBox0().c1, 0));
} else if (undefined !== cross.c) { } else if (undefined !== cross.c) {
return this.getValue2(new CellAddress(this.getBBox0().r1, cross.c)); return this.getValue2(new CellAddress(this.getBBox0().r1, cross.c, 0));
} }
} }
return new cError(cErrorType.wrong_value_type); return new cError(cErrorType.wrong_value_type);
......
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