Commit 292c1d31 authored by Alexander.Trofimov's avatar Alexander.Trofimov

hitResizeCorner -> _hitResizeCorner

parent 8ec4d9ed
...@@ -6248,25 +6248,25 @@ ...@@ -6248,25 +6248,25 @@
yFormula1 = this.rows[oFormulaRangeIn.r1].top - offsetY; yFormula1 = this.rows[oFormulaRangeIn.r1].top - offsetY;
yFormula2 = this.rows[oFormulaRangeIn.r2].top + this.rows[oFormulaRangeIn.r2].height - offsetY; yFormula2 = this.rows[oFormulaRangeIn.r2].top + this.rows[oFormulaRangeIn.r2].height - offsetY;
if (this.hitResizeCorner(xFormula1 - this.width_1px, yFormula1 - this.height_1px, x, y)) { if (this._hitResizeCorner(xFormula1 - this.width_1px, yFormula1 - this.height_1px, x, y)) {
/*TOP-LEFT*/ /*TOP-LEFT*/
cursor = kCurSEResize; cursor = kCurSEResize;
col = oFormulaRange.c2; col = oFormulaRange.c2;
row = oFormulaRange.r2; row = oFormulaRange.r2;
break; break;
} else if (this.hitResizeCorner(xFormula2, yFormula1 - this.height_1px, x, y)) { } else if (this._hitResizeCorner(xFormula2, yFormula1 - this.height_1px, x, y)) {
/*TOP-RIGHT*/ /*TOP-RIGHT*/
cursor = kCurNEResize; cursor = kCurNEResize;
col = oFormulaRange.c1; col = oFormulaRange.c1;
row = oFormulaRange.r2; row = oFormulaRange.r2;
break; break;
} else if (this.hitResizeCorner(xFormula1 - this.width_1px, yFormula2, x, y)) { } else if (this._hitResizeCorner(xFormula1 - this.width_1px, yFormula2, x, y)) {
/*BOTTOM-LEFT*/ /*BOTTOM-LEFT*/
cursor = kCurNEResize; cursor = kCurNEResize;
col = oFormulaRange.c2; col = oFormulaRange.c2;
row = oFormulaRange.r1; row = oFormulaRange.r1;
break; break;
} else if (this.hitResizeCorner(xFormula2, yFormula2, x, y)) { } else if (this._hitResizeCorner(xFormula2, yFormula2, x, y)) {
/*BOTTOM-RIGHT*/ /*BOTTOM-RIGHT*/
cursor = kCurSEResize; cursor = kCurSEResize;
col = oFormulaRange.c1; col = oFormulaRange.c1;
......
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