Commit 62c0742d authored by Ilya.Kirillov's avatar Ilya.Kirillov

Сделано, чтобы при загрузке, если запрашиваются компилированные настройки они...

Сделано, чтобы при загрузке, если запрашиваются компилированные настройки они отдавались стандартные, а не рассчитывались.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68113 954022d7-b5bf-4e40-9824-e11837661b57
parent e4f4cd55
...@@ -7728,7 +7728,7 @@ Paragraph.prototype = ...@@ -7728,7 +7728,7 @@ Paragraph.prototype =
{ {
if ( true === this.CompiledPr.NeedRecalc ) if ( true === this.CompiledPr.NeedRecalc )
{ {
if ( undefined !== this.Parent && null !== this.Parent ) if (undefined !== this.Parent && null !== this.Parent && true !== g_oIdCounter.m_bLoad)
{ {
this.CompiledPr.Pr = this.Internal_CompileParaPr2(); this.CompiledPr.Pr = this.Internal_CompileParaPr2();
if(!this.bFromDocument) if(!this.bFromDocument)
...@@ -7737,9 +7737,6 @@ Paragraph.prototype = ...@@ -7737,9 +7737,6 @@ Paragraph.prototype =
this.PresentationPr.Bullet = this.CompiledPr.Pr.ParaPr.Get_PresentationBullet(); this.PresentationPr.Bullet = this.CompiledPr.Pr.ParaPr.Get_PresentationBullet();
this.Numbering.Bullet = this.PresentationPr.Bullet; this.Numbering.Bullet = this.PresentationPr.Bullet;
} }
if (true !== g_oIdCounter.m_bLoad)
this.CompiledPr.NeedRecalc = false;
} }
else else
{ {
...@@ -7752,6 +7749,9 @@ Paragraph.prototype = ...@@ -7752,6 +7749,9 @@ Paragraph.prototype =
}; };
this.CompiledPr.Pr.ParaPr.Init_Default(); this.CompiledPr.Pr.ParaPr.Init_Default();
this.CompiledPr.Pr.TextPr.Init_Default(); this.CompiledPr.Pr.TextPr.Init_Default();
this.CompiledPr.Pr.ParaPr.StyleTabs = new CParaTabs();
this.CompiledPr.Pr.ParaPr.StyleNumPr = undefined;
} }
this.CompiledPr.NeedRecalc = true; this.CompiledPr.NeedRecalc = true;
......
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