Commit a938220a authored by Oleg.Korshul's avatar Oleg.Korshul

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51168 954022d7-b5bf-4e40-9824-e11837661b57
parent 6f65a84c
......@@ -673,6 +673,7 @@ function BinaryPPTYLoader()
s.Skip2(6); // type + len + start attr
var _slideNum = 0;
while (true)
{
var _at = s.GetUChar();
......@@ -680,8 +681,9 @@ function BinaryPPTYLoader()
break;
var indexL = s.GetULong();
this.presentation.Slides[_at].setLayout(this.presentation.slideLayouts[indexL]);
this.presentation.Slides[_at].Master = this.presentation.slideLayouts[indexL].Master;
this.presentation.Slides[_slideNum].setLayout(this.presentation.slideLayouts[indexL]);
this.presentation.Slides[_slideNum].Master = this.presentation.slideLayouts[indexL].Master;
_slideNum++;
}
}
}
......@@ -2669,6 +2671,9 @@ function BinaryPPTYLoader()
var s = this.stream;
var end = s.cur + s.GetULong() + 4;
if (s.cur == end)
return _timing;
s.Skip2(1); // attribute start
var _presentDuration = false;
while (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