Commit e6276b23 authored by Ilya.Kirillov's avatar Ilya.Kirillov

Откатил предыдущую правку 66246, потому что она была сделана неправильно....

Откатил предыдущую правку 66246, потому что она была сделана неправильно. Вместо правки бага в базовом классе, баг был поправлен только в одном классе наследнике. Не надо так!

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66250 954022d7-b5bf-4e40-9824-e11837661b57
parent 83e5f9f0
......@@ -1566,7 +1566,7 @@ CParagraphContentWithParagraphLikeContent.prototype.Get_PosByElement = function(
};
CParagraphContentWithParagraphLikeContent.prototype.Get_ElementByPos = function(ContentPos, Depth)
{
if (Depth + 1 >= ContentPos.Depth)
if (Depth >= ContentPos.Depth)
return this;
var CurPos = ContentPos.Get(Depth);
......
......@@ -2266,7 +2266,6 @@ CMathBase.prototype.Set_ParaContentPos = CMathContent.prototype.Set_Par
CMathBase.prototype.Get_CurrentParaPos = CMathContent.prototype.Get_CurrentParaPos;
CMathBase.prototype.private_UpdatePosOnAdd = CMathContent.prototype.private_UpdatePosOnAdd;
CMathBase.prototype.private_CorrectSelectionPos = CMathContent.prototype.private_CorrectSelectionPos;
CMathBase.prototype.Get_ElementByPos = CMathContent.prototype.Get_ElementByPos;
CMathBase.prototype.private_CorrectCurPos = function()
{
......
......@@ -1843,14 +1843,6 @@ CMathContent.prototype.GetFirstElement = function()
return first;
};
CMathContent.prototype.Get_ElementByPos = function(ContentPos, Depth)
{
if (Depth >= ContentPos.Depth)
return this;
var CurPos = ContentPos.Get(Depth);
return this.Content[CurPos].Get_ElementByPos(ContentPos, Depth + 1);
};
////////////////////////////////////////////////////////////////
......
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