Commit fc21968b authored by Ilya.Kirillov's avatar Ilya.Kirillov

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

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