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

fix: Bug 30571 - [NamedRanges]Ошибка в консоли при удалении листа, содержащего...

fix: Bug 30571 - [NamedRanges]Ошибка в консоли при удалении листа, содержащего именованный диапазон с областью действия на другом листе (http://bugzserver/show_bug.cgi?id=30571)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@65272 954022d7-b5bf-4e40-9824-e11837661b57
parent 5e4ecea7
......@@ -1592,12 +1592,13 @@ DefNameVertex.prototype = {
returnCell:function () {
//todo
if ( null == this.cell && this.wb && !this.isArea && this.Ref !== null && this.Ref !== undefined ) {
var ws = this.wb.getWorksheetById( this.sheetId );
if ( ws )
this.cell = ws._getCellNoEmpty( this.bbox.r1, this.bbox.c1 );
}
return this.cell;
return false;
// if ( null == this.cell && this.wb && !this.isArea && this.Ref !== null && this.Ref !== undefined ) {
// var ws = this.wb.getWorksheetById( this.sheetId );
// if ( ws )
// this.cell = ws._getCellNoEmpty( this.bbox.r1, this.bbox.c1 );
// }
// return this.cell;
},
getAscCDefName:function () {
......
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