Commit f20ec261 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

падение при автоподолнении с формулами

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@54771 954022d7-b5bf-4e40-9824-e11837661b57
parent 70bb34c3
......@@ -2866,7 +2866,7 @@ Woorksheet.prototype._removeCell=function(nRow, nCol, cell){
History.Add(g_oUndoRedoWorksheet, historyitem_Worksheet_RemoveCell, this.getId(), new Asc.Range(nCol, nRow, nCol, nRow), new UndoRedoData_CellSimpleData(nRow, nCol, oUndoRedoData_CellData, null));
}
if(cell.formulaParsed)
this.wb.dependencyFormulas.deleteMasterNodes2( this.getId(), cell.getName() );
this.workbook.dependencyFormulas.deleteMasterNodes2( this.getId(), cell.getName() );
// addToArrRecalc(this.workbook, this.getId(), cell.getName());
// if( this.workbook.dependencyFormulas.getNode(this.getId(),this.getName()) && !this.workbook.needRecalc[ getVertexId(this.getId(),cell.getName()) ] ){
......@@ -2925,12 +2925,12 @@ Woorksheet.prototype._getRowNoEmpty=function(row){
if(oCurRow)
return oCurRow;
return null;
};
Woorksheet.prototype._getRowNoEmptyWithAll=function(col){
var oRes = this._getRowNoEmpty(col);
if(null == oRes)
oRes = this.oSheetFormatPr.oAllRow;
return oRes;
};
Woorksheet.prototype._getRowNoEmptyWithAll=function(col){
var oRes = this._getRowNoEmpty(col);
if(null == oRes)
oRes = this.oSheetFormatPr.oAllRow;
return oRes;
};
Woorksheet.prototype._getColNoEmpty=function(col){
//0-based
......
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