Commit 9946e0f0 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix bug #27630

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59728 954022d7-b5bf-4e40-9824-e11837661b57
parent f4c19097
......@@ -2319,8 +2319,8 @@
if (null !== mc) {
if (col !== mc.c1 || row !== mc.r1) {continue;}
for (var i = mc.c1 + 1; i <= mc.c2 && i < this.nColsCount; ++i) {mwidth += this.cols[i].width;}
for (var j = mc.r1 + 1; j <= mc.r2 && j < this.nRowsCount; ++j) {mheight += this.rows[j].height;}
for (var i = mc.c1 + 1; i <= mc.c2 && i < this.cols.length; ++i) {mwidth += this.cols[i].width;}
for (var j = mc.r1 + 1; j <= mc.r2 && j < this.rows.length; ++j) {mheight += this.rows[j].height;}
} else {
if (bg === null) {
if (col === colEnd && col < this.cols.length - 1 && row < this.rows.length - 1) {
......
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