Commit 83b25d24 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 24620 - Ошибка в консоли при изменении диапазона данных диаграммы типа...

Bug 24620 - Ошибка в консоли при изменении диапазона данных диаграммы типа "pie", и последующего undo

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56888 954022d7-b5bf-4e40-9824-e11837661b57
parent 968c4513
......@@ -16900,7 +16900,7 @@ CPieChart.prototype =
addSer: function(ser)
{
History.Add(this, {Type: historyitem_PieChart_SetFirstSliceAng, ser: ser});
History.Add(this, {Type: historyitem_PieChart_AddSer, ser: ser});
this.series.push(ser);
ser.setParent(this);
if(this.parent && this.parent.parent && this.parent.parent.parent)
......@@ -16950,7 +16950,14 @@ CPieChart.prototype =
}
case historyitem_PieChart_AddSer:
{
this.series.push(data.ser);
for(var i = this.series.length; i > -1; --i)
{
if(this.series[i] === data.ser)
{
this.series.splice(i, 1);
break;
}
}
if(this.parent && this.parent.parent && this.parent.parent.parent)
{
this.parent.parent.parent.handleUpdateType();
......
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