Commit 268f675d authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49370 954022d7-b5bf-4e40-9824-e11837661b57
parent 5b740fd5
......@@ -1832,7 +1832,39 @@ CChartAsGroup.prototype =
}
this.init();
this.recalculate();
}
},
setParent: function(paraDrawing)
{
var data = {Type: historyitem_SetParent};
if(isRealObject(this.parent))
{
data.oldParent = this.parent.Get_Id();
}
else
{
data.oldParent = null;
}
if(isRealObject(paraDrawing))
{
data.newParent = paraDrawing.Get_Id();
}
else
{
data.newParent = null;
}
History.Add(this, data);
this.parent = paraDrawing;
},
Write_ToBinary2: function()
{},
Read_FromBinary2: function()
{}
};
window["Asc"].CChartAsGroup = CChartAsGroup;
......
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