Commit 0bbfa5f7 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 26444 - [CoEdit] Не приходят Shapes в совместном редактировании

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58239 954022d7-b5bf-4e40-9824-e11837661b57
parent 46220c04
...@@ -7794,27 +7794,39 @@ CShapeStyle.prototype = ...@@ -7794,27 +7794,39 @@ CShapeStyle.prototype =
switch (type) switch (type)
{ {
case historyitem_ShapeStyle_SetLnRef: case historyitem_ShapeStyle_SetLnRef:
{
if(r.GetBool())
{ {
this.lnRef = new StyleRef(); this.lnRef = new StyleRef();
this.lnRef.Read_FromBinary(r); this.lnRef.Read_FromBinary(r);
}
break; break;
} }
case historyitem_ShapeStyle_SetFillRef: case historyitem_ShapeStyle_SetFillRef:
{
if(r.GetBool())
{ {
this.fillRef = new StyleRef(); this.fillRef = new StyleRef();
this.fillRef.Read_FromBinary(r); this.fillRef.Read_FromBinary(r);
}
break; break;
} }
case historyitem_ShapeStyle_SetFontRef: case historyitem_ShapeStyle_SetFontRef:
{
if(r.GetBool())
{ {
this.fontRef = new FontRef(); this.fontRef = new FontRef();
this.fontRef.Read_FromBinary(r); this.fontRef.Read_FromBinary(r);
}
break; break;
} }
case historyitem_ShapeStyle_SetEffectRef: case historyitem_ShapeStyle_SetEffectRef:
{
if(r.GetBool())
{ {
this.effectRef = new StyleRef(); this.effectRef = new StyleRef();
this.effectRef.Read_FromBinary(r); this.effectRef.Read_FromBinary(r);
}
break; break;
} }
} }
......
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