Commit 8b1ea34d authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

read rPr & pPr in field

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59928 954022d7-b5bf-4e40-9824-e11837661b57
parent d6cfd965
......@@ -7090,10 +7090,33 @@ function BinaryPPTYLoader()
else
var f_text = s.GetString2();
}
//todo
while (s.cur < _end)
{
var _at2 = s.GetUChar();
switch (_at2)
{
case 0:
{
var _rPr = this.ReadRunProperties();
break;
}
case 1:
{
var _pPr = this.ReadTextParagraphPr();
break;
}
default:
{
break;
}
}
}
par.f_id = f_id;
par.f_type = f_type;
par.f_text = f_text;
s.Seek2(_end);
break;
}
......
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