Commit 343b1f8f authored by Alexey.Golubev's avatar Alexey.Golubev Committed by Alexander.Trofimov

Решены проблемы билда:

                              var long = stream.GetULong();
                                    ^
..\Common\wordcopypaste.js:3412: ERROR - Parse error. identifier is a reserved word
                                for(var j = 0; j < long; ++j)
                                                   ^
..\Common\wordcopypaste.js:3412: ERROR - Parse error. missing ; before statement
                                for(var j = 0; j < long; ++j)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50276 954022d7-b5bf-4e40-9824-e11837661b57
parent 2ebdcdec
......@@ -3407,9 +3407,9 @@ PasteProcessor.prototype =
for(var i = 0; i < slide_count; ++i)
{
arr_layouts_id[i] = stream.GetString2();
var long = stream.GetULong();
var table_style_ids_len = stream.GetULong();
var table_style_ids = [];
for(var j = 0; j < long; ++j)
for(var j = 0; j < table_style_ids_len; ++j)
{
if(stream.GetBool())
table_style_ids.push(stream.GetULong());
......
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