Commit 253648f1 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

\n в тексте параграфов презентаций.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50604 954022d7-b5bf-4e40-9824-e11837661b57
parent 7dc16ea9
......@@ -6702,6 +6702,12 @@ function BinaryPPTYLoader()
{
par.Internal_Content_Add( EndPos++, new ParaTab());
}
else if (_text[j] == '\n')
{
par.Internal_Content_Add( EndPos++, new ParaNewLine( break_Line ));
}
else if (_text[j] == '\r')
;
else if (_text[j] != ' ')
{
par.Internal_Content_Add( EndPos++, new ParaText(_text[j]));
......
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