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

Bug 21825 - Пропадают цитаты при переоткрытии документа с комментариями к...

Bug 21825 - Пропадают цитаты при переоткрытии документа с комментариями к несколькими ячейкам в таблице

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51246 954022d7-b5bf-4e40-9824-e11837661b57
parent c93f7b50
......@@ -5235,7 +5235,7 @@ function Binary_DocumentTableReader(doc, oReadResult, openParams, stream, bAllow
this.lastPar = null;
this.oComments = oComments;
this.nCurCommentsCount = 0;
this.oCurComments = [];//вспомогательный массив для заполнения QuotedText
this.oCurComments = {};//вспомогательный массив для заполнения QuotedText
this.Reset = function()
{
this.lastPar = null;
......@@ -8399,7 +8399,10 @@ function Binary_DocumentTableReader(doc, oReadResult, openParams, stream, bAllow
{
var oCellContent = new Array();
var oCellContentReader = new Binary_DocumentTableReader(cell.Content, this.oReadResult, this.openParams, this.stream, false, this.oComments);
oCellContentReader.nCurCommentsCount = this.nCurCommentsCount;
oCellContentReader.oCurComments = this.oCurComments;
oCellContentReader.Read(length, oCellContent);
this.nCurCommentsCount = oCellContentReader.nCurCommentsCount;
for(var i = 0, length = oCellContent.length; i < length; ++i)
cell.Content.Internal_Content_Add(i + 1, oCellContent[i]);
......
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