Commit 7e302ea3 authored by Ilya.Kirillov's avatar Ilya.Kirillov

Исправлен баг с содержимым пустого параграфа при создании класса CDocumentContent (баг 29860).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64802 954022d7-b5bf-4e40-9824-e11837661b57
parent f6939e5b
......@@ -56,6 +56,7 @@ function CDocumentContent(Parent, DrawingDocument, X, Y, XLimit, YLimit, Split,
this.Content = [];
this.Content[0] = new Paragraph( DrawingDocument, this, 0, X, Y, XLimit, YLimit, bPresentation );
this.Content[0].Correct_Content();
this.Content[0].Set_DocumentNext( null );
this.Content[0].Set_DocumentPrev( null );
......
......@@ -148,7 +148,7 @@ function Paragraph(DrawingDocument, Parent, PageNum, X, Y, XLimit, YLimit, bFrom
EndRun.Add_ToContent( 0, new ParaEnd() );
this.Content[0] = EndRun;
this.m_oPRSW = new CParagraphRecalculateStateWrap(this);
this.m_oPRSC = new CParagraphRecalculateStateCounter();
this.m_oPRSA = new CParagraphRecalculateStateAlign();
......
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