Commit 1008dec3 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48922 954022d7-b5bf-4e40-9824-e11837661b57
parent 14b96ca3
...@@ -1635,7 +1635,7 @@ CGroupShape.prototype = ...@@ -1635,7 +1635,7 @@ CGroupShape.prototype =
w.WriteLong(this.spTree[i].getObjectType()); w.WriteLong(this.spTree[i].getObjectType());
this.spTree[i].writeToBinaryForCopyPaste(w); this.spTree[i].writeToBinaryForCopyPaste(w);
} }
return w.GetBase64Memory(); return "TeamLabGroup" + w.pos + ";" + w.GetBase64Memory();
}, },
......
...@@ -1063,7 +1063,7 @@ CImageShape.prototype = ...@@ -1063,7 +1063,7 @@ CImageShape.prototype =
w.WriteLong(CLASS_TYPE_IMAGE); w.WriteLong(CLASS_TYPE_IMAGE);
this.blipFill.Write_ToBinary2(w); this.blipFill.Write_ToBinary2(w);
this.spPr.Write_ToBinary2(w); this.spPr.Write_ToBinary2(w);
return w.GetBase64Memory(); return "TeamLabImage" + w.pos + ";" + w.GetBase64Memory();
}, },
......
...@@ -2802,7 +2802,7 @@ CShape.prototype = ...@@ -2802,7 +2802,7 @@ CShape.prototype =
{ {
this.txBody.writeToBinaryForCopyPaste(w); this.txBody.writeToBinaryForCopyPaste(w);
} }
return w.GetBase64Memory(); return "TeamLabShape" + w.pos + ";" + w.GetBase64Memory();
}, },
readFromBinaryForCopyPaste: function(r, group, drawingObjects) readFromBinaryForCopyPaste: function(r, group, drawingObjects)
......
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