Commit 92d2446a authored by Ilya Kirillov's avatar Ilya Kirillov

The value of page count now are storing in a collaboration editing.

parent 2fec0ced
...@@ -1908,6 +1908,17 @@ ParaPageCount.prototype.private_UpdateWidth = function() ...@@ -1908,6 +1908,17 @@ ParaPageCount.prototype.private_UpdateWidth = function()
this.Width = RealWidth; this.Width = RealWidth;
this.WidthVisible = RealWidth; this.WidthVisible = RealWidth;
}; };
ParaPageCount.prototype.Write_ToBinary = function(Writer)
{
// Long : Type
// Long : PageCount
Writer.WriteLong(this.Type);
Writer.WriteLong(this.PageCount);
};
ParaPageCount.prototype.Read_FromBinary = function(Reader)
{
this.PageCount = Reader.GetLong();
};
function ParagraphContent_Read_FromBinary(Reader) function ParagraphContent_Read_FromBinary(Reader)
{ {
......
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