mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-02-10 18:15:19 +08:00
[pdf] Fix bug #77702
This commit is contained in:
committed by
Ilya Kirillov
parent
d205d28eac
commit
ddac6fa400
@ -826,11 +826,12 @@ CChangesPDFAnnotReply.prototype.private_GetContentChanges = function() {
|
||||
CChangesPDFAnnotReply.prototype.GetContentChangesClass = function() {
|
||||
return this.private_GetContentChanges();
|
||||
};
|
||||
CChangesPDFAnnotReply.prototype.private_WriteItem = function (Writer, sId) {
|
||||
Writer.WriteString2(sId);
|
||||
CChangesPDFAnnotReply.prototype.private_WriteItem = function (Writer, oItem) {
|
||||
Writer.WriteString2(oItem.GetId());
|
||||
};
|
||||
CChangesPDFAnnotReply.prototype.private_ReadItem = function (Reader) {
|
||||
return Reader.GetString2();
|
||||
let sId = Reader.GetString2();
|
||||
return AscCommon.g_oTableId.Get_ById(sId);
|
||||
};
|
||||
CChangesPDFAnnotReply.prototype.Copy = function() {
|
||||
let oChanges = new this.constructor(this.Class, this.Pos, this.Items, this.Add);
|
||||
|
||||
Reference in New Issue
Block a user