Commit ad6b22eb authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

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

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

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