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
...@@ -7795,26 +7795,38 @@ CShapeStyle.prototype = ...@@ -7795,26 +7795,38 @@ CShapeStyle.prototype =
{ {
case historyitem_ShapeStyle_SetLnRef: case historyitem_ShapeStyle_SetLnRef:
{ {
this.lnRef = new StyleRef(); if(r.GetBool())
this.lnRef.Read_FromBinary(r); {
this.lnRef = new StyleRef();
this.lnRef.Read_FromBinary(r);
}
break; break;
} }
case historyitem_ShapeStyle_SetFillRef: case historyitem_ShapeStyle_SetFillRef:
{ {
this.fillRef = new StyleRef(); if(r.GetBool())
this.fillRef.Read_FromBinary(r); {
this.fillRef = new StyleRef();
this.fillRef.Read_FromBinary(r);
}
break; break;
} }
case historyitem_ShapeStyle_SetFontRef: case historyitem_ShapeStyle_SetFontRef:
{ {
this.fontRef = new FontRef(); if(r.GetBool())
this.fontRef.Read_FromBinary(r); {
this.fontRef = new FontRef();
this.fontRef.Read_FromBinary(r);
}
break; break;
} }
case historyitem_ShapeStyle_SetEffectRef: case historyitem_ShapeStyle_SetEffectRef:
{ {
this.effectRef = new StyleRef(); if(r.GetBool())
this.effectRef.Read_FromBinary(r); {
this.effectRef = new StyleRef();
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