Commit d2a2ff75 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49751 954022d7-b5bf-4e40-9824-e11837661b57
parent d080d027
...@@ -3245,7 +3245,10 @@ Woorksheet.prototype._getCellNoEmpty=function(row, col){ ...@@ -3245,7 +3245,10 @@ Woorksheet.prototype._getCellNoEmpty=function(row, col){
var oCurCell; var oCurCell;
var oCurRow = this.aGCells[row]; var oCurRow = this.aGCells[row];
if(oCurRow) if(oCurRow)
return oCurRow.c[col] ? oCurRow.c[col] : null; {
var cell = oCurRow.c[col];
return cell ? cell : null;
}
return null; return null;
}; };
Woorksheet.prototype._getRowNoEmpty=function(row){ Woorksheet.prototype._getRowNoEmpty=function(row){
......
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