Commit 1fad33bc authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с пересылкой изменений об авторе и времени рецензирования (баг 31167).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66951 954022d7-b5bf-4e40-9824-e11837661b57
parent f18fbbdb
......@@ -7976,6 +7976,13 @@ CTextPr.prototype =
Flags |= 268435456;
}
if (undefined !== this.PrChange)
{
this.PrChange.Write_ToBinary(Writer);
this.ReviewInfo.Write_ToBinary(Writer);
Flags |= 536870912;
}
var EndPos = Writer.GetCurPosition();
Writer.Seek( StartPos );
Writer.WriteLong( Flags );
......@@ -8127,6 +8134,14 @@ CTextPr.prototype =
this.TextFill = new CUniFill();
this.TextFill.Read_FromBinary(Reader);
}
if (Flags & 536870912)
{
this.PrChange = new CTextPr();
this.ReviewInfo = new CReviewInfo();
this.PrChange.Read_FromBinary(Reader);
this.ReviewInfo.Read_FromBinary(Reader);
}
},
Check_NeedRecalc : function()
......
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