Commit b16386e1 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Поправила баг в связи с предыдущей заливкой

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56617 954022d7-b5bf-4e40-9824-e11837661b57
parent 89908c01
...@@ -7255,8 +7255,9 @@ ParaRun.prototype.getPropsForWrite = function() ...@@ -7255,8 +7255,9 @@ ParaRun.prototype.getPropsForWrite = function()
return {wRPrp: wRPrp, mathRPrp: mathRPrp}; return {wRPrp: wRPrp, mathRPrp: mathRPrp};
} }
ParaRun.prototype.Math_SetGaps = function(Paragraph, RecalcInfo) ParaRun.prototype.Math_SetGaps = function(Parent, Paragraph, RecalcInfo)
{ {
this.Parent = Parent;
this.Paragraph = Paragraph; this.Paragraph = Paragraph;
var oWPrp = this.Get_CompiledPr(true); var oWPrp = this.Get_CompiledPr(true);
......
...@@ -5063,7 +5063,7 @@ CMathContent.prototype = ...@@ -5063,7 +5063,7 @@ CMathContent.prototype =
if(this.content[pos].typeObj == MATH_COMP) if(this.content[pos].typeObj == MATH_COMP)
this.content[pos].SetGaps(this, ParaMath, RecalcInfo); this.content[pos].SetGaps(this, ParaMath, RecalcInfo);
else else
this.content[pos].Math_SetGaps(ParaMath.Paragraph, RecalcInfo); this.content[pos].Math_SetGaps(this, ParaMath.Paragraph, RecalcInfo);
} }
......
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