git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48917 954022d7-b5bf-4e40-9824-e11837661b57

This commit is contained in:
Sergey.Luzyanin
2013-08-19 09:03:08 +00:00
committed by Alexander.Trofimov
parent 5bc2e10a9e
commit 1e9dfc223e
3 changed files with 5 additions and 1 deletions

View File

@ -1627,6 +1627,7 @@ CGroupShape.prototype =
writeToBinaryForCopyPaste: function(w)
{
w.WriteLong(CLASS_TYPE_GROUP);
this.spPr.Write_ToBinary2(w);
w.WriteLong(this.spTree.length);
for(var i = 0; i < this.spTree.length; ++i)
@ -1644,6 +1645,7 @@ CGroupShape.prototype =
readFromBinaryForCopyPaste: function(r, group, drawingObjects)
{
this.group = group;
this.drawingObjects = drawingObjects;
this.spPr.Read_FromBinary2(r);

View File

@ -1059,6 +1059,8 @@ CImageShape.prototype =
writeToBinaryForCopyPaste: function(w)
{
w.WriteLong(CLASS_TYPE_IMAGE);
this.blipFill.Write_ToBinary2(w);
this.spPr.Write_ToBinary2(w);
@ -1079,5 +1081,4 @@ CImageShape.prototype =
this.calculateTransformTextMatrix();
}
}
};

View File

@ -2790,6 +2790,7 @@ CShape.prototype =
writeToBinaryForCopyPaste: function(w)
{
w.WriteLong(CLASS_TYPE_SHAPE);
this.spPr.Write_ToBinary2(w);
w.WriteBool(isRealObject(this.style));
if(isRealObject(this.style))