Commit 54917d2c authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

правка бага 21426 - [CoEdit] При создании дубликата слайда с текстовыми...

правка бага 21426 - [CoEdit] При создании дубликата слайда с текстовыми областями, где есть списки, они копируются без списка

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50808 954022d7-b5bf-4e40-9824-e11837661b57
parent 9fdcfe5d
......@@ -4690,7 +4690,7 @@ CDocumentContent.prototype =
if(this.Content[i].GetType() == type_Paragraph)
{
//_history_obj.arrOldBullets[i] = this.Content[i].bullet;
this.Content[i].bullet = bullet.createDuplicate();
this.Content[i].setPresentationBullet(bullet.createDuplicate());
this.Content[i].Add_PresentationNumbering2(_bullet);
}
}
......@@ -4747,7 +4747,7 @@ CDocumentContent.prototype =
if((content = this.Content[i]).GetType() == type_Paragraph)
{
//_history_obj.arrOldBullets[i] = content.bullet;
content.bullet = bullet.createDuplicate();
content.setPresentationBullet(bullet.createDuplicate());
this.Content[i].Add_PresentationNumbering2(_bullet);
}
}
......@@ -4790,7 +4790,7 @@ CDocumentContent.prototype =
//_history_obj.oldBullet = content.bullet;
//_history_obj.pos = this.CurPos.ContentPos;
content.bullet = bullet.createDuplicate();
content.setPresentationBullet(bullet.createDuplicate());
content.Add_PresentationNumbering2(_bullet);
this.ContentLastChangePos = this.CurPos.ContentPos;
this.Recalculate();
......
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