Commit 92f91391 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

fix bug #21934

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51395 954022d7-b5bf-4e40-9824-e11837661b57
parent 0a2c9308
......@@ -6510,8 +6510,12 @@
{
for(var n = activeCells.r1 - 1; n <= activeCells.r2 + 1; n++)
{
if(n < 0)
n = 0;
for(var k = activeCells.c1 - 1; k <= activeCells.c2 + 1; k++)
{
if(k < 0)
k = 0;
cell = ws.model._getCell(n,k);
if(cell.getValueWithoutFormat() != '')
{
......
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