Commit 54796413 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Проблемы с пересчетом после вставки слайда

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60269 954022d7-b5bf-4e40-9824-e11837661b57
parent fa75ca25
......@@ -1400,12 +1400,12 @@ function CBinaryFileWriter()
oThis.StartRecord(4);
var uniPr = new UniNvPr();
var uniPr = ExecuteNoHistory(function(){return new UniNvPr();}, this, []);
uniPr.cNvPr.id = 1;
uniPr.cNvPr.name = "";
var spPr = new CSpPr();
spPr.xfrm = new CXfrm();
var spPr = ExecuteNoHistory(function(){return new CSpPr();}, this, []);
spPr.xfrm = ExecuteNoHistory(function(){return new CXfrm();}, this, []);
spPr.xfrm.offX = 0;
spPr.xfrm.offY = 0;
spPr.xfrm.extX = 0;
......
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