Commit 1c27b27f authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 34300

parent c3499250
...@@ -8831,6 +8831,17 @@ CMultiLvlStrCache.prototype = ...@@ -8831,6 +8831,17 @@ CMultiLvlStrCache.prototype =
{ {
History.Add(new CChangesDrawingsLong(this, AscDFH.historyitem_MultiLvlStrCache_SetPtCount, this.ptCount, pr)); History.Add(new CChangesDrawingsLong(this, AscDFH.historyitem_MultiLvlStrCache_SetPtCount, this.ptCount, pr));
this.ptCount = pr; this.ptCount = pr;
},
Write_ToBinary2: function(w)
{
w.WriteLong(this.getObjectType());
w.WriteString2(this.Get_Id());
},
Read_FromBinary2: function(r)
{
this.Id = r.GetString2();
} }
}; };
...@@ -11567,6 +11578,7 @@ function CSurfaceChart() ...@@ -11567,6 +11578,7 @@ function CSurfaceChart()
this.m_oBandFormatsContentChanges = new AscCommon.CContentChanges(); this.m_oBandFormatsContentChanges = new AscCommon.CContentChanges();
this.Id = g_oIdCounter.Get_NewId(); this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
} }
CSurfaceChart.prototype = CSurfaceChart.prototype =
......
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