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

Исправлен баг с работой списков (баг 21815).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51241 954022d7-b5bf-4e40-9824-e11837661b57
parent e6c391d7
...@@ -4329,6 +4329,7 @@ CDocument.prototype = ...@@ -4329,6 +4329,7 @@ CDocument.prototype =
{ {
NumId = this.Numbering.Create_AbstractNum(); NumId = this.Numbering.Create_AbstractNum();
AbstractNum = this.Numbering.Get_AbstractNum( NumId ); AbstractNum = this.Numbering.Get_AbstractNum( NumId );
AbstractNum.Create_Default_Numbered();
ChangeLvl = 0; ChangeLvl = 0;
} }
else if ( true === bDiffId || true != this.Numbering.Check_Format( PrevId, PrevLvl, numbering_numfmt_Decimal ) ) else if ( true === bDiffId || true != this.Numbering.Check_Format( PrevId, PrevLvl, numbering_numfmt_Decimal ) )
......
...@@ -4002,6 +4002,7 @@ CDocumentContent.prototype = ...@@ -4002,6 +4002,7 @@ CDocumentContent.prototype =
{ {
NumId = this.Numbering.Create_AbstractNum(); NumId = this.Numbering.Create_AbstractNum();
AbstractNum = this.Numbering.Get_AbstractNum( NumId ); AbstractNum = this.Numbering.Get_AbstractNum( NumId );
AbstractNum.Create_Default_Numbered();
ChangeLvl = 0; ChangeLvl = 0;
} }
else if ( true === bDiffId || true != this.Numbering.Check_Format( PrevId, PrevLvl, numbering_numfmt_Decimal ) ) else if ( true === bDiffId || true != this.Numbering.Check_Format( PrevId, PrevLvl, numbering_numfmt_Decimal ) )
......
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