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

дополнительно для 64616

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64625 954022d7-b5bf-4e40-9824-e11837661b57
parent 62535a2e
......@@ -2494,7 +2494,9 @@ Workbook.prototype.getDefinesNames = function ( name, sheetId ) {
return this.dependencyFormulas.getDefNameNodeByName( name, sheetId );
};
Workbook.prototype.getDefinedName = function ( name ) {
return this.dependencyFormulas.getDefNameNodeByName( name.Name, name.LocalSheetId );
var ws = this.getWorksheet( name.LocalSheetId ), sheetId = null;
ws ? sheetId = ws.getId() : null;
return this.dependencyFormulas.getDefNameNodeByName( name.Name, sheetId );
};
Workbook.prototype.delDefinesNames = function ( defName ) {
History.Create_NewPoint();
......
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