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

Fixed bug #33643

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