Commit 3a081a9a authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #33643

parent 7243871c
......@@ -443,15 +443,15 @@ CChangesDocumentDefaultLanguage.prototype.WriteToBinary = function(Writer)
{
// Long : New
// Long : Old
Writer.WriteBool(this.New);
Writer.WriteBool(this.Old);
Writer.WriteLong(this.New);
Writer.WriteLong(this.Old);
};
CChangesDocumentDefaultLanguage.prototype.ReadFromBinary = function(Reader)
{
// Long : New
// Long : Old
this.New = Reader.GetBool();
this.Old = Reader.GetBool();
this.New = Reader.GetLong();
this.Old = Reader.GetLong();
};
CChangesDocumentDefaultLanguage.prototype.CreateReverseChange = 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