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

Range.getName -> AscRange.getName

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56070 954022d7-b5bf-4e40-9824-e11837661b57
parent ebc563fc
......@@ -4659,14 +4659,7 @@ Range.prototype.getBBox0=function(){
return this.bbox;
};
Range.prototype.getName=function(){
var first = this.getFirst();
var sRes = first.getID();
if(false == this.isOneCell())
{
var last = this.getLast();
sRes = sRes + ":" + last.getID();
}
return sRes;
return this.bbox.getName();
};
Range.prototype.getCells=function(){
var aResult = [];
......
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