Commit 79f63e3d authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49558 954022d7-b5bf-4e40-9824-e11837661b57
parent 4616b244
...@@ -56,7 +56,12 @@ CChartAsGroup.prototype = ...@@ -56,7 +56,12 @@ CChartAsGroup.prototype =
{ {
return this.chart; return this.chart;
}, },
calculateAfterChangeTheme: function()
{
this.recalculate();
},
calculateAfterOpen10: function() calculateAfterOpen10: function()
{ {
this.init(); this.init();
......
...@@ -3124,7 +3124,9 @@ function CSpPr() ...@@ -3124,7 +3124,9 @@ function CSpPr()
var boolBWMode = this.bwMode == 1; var boolBWMode = this.bwMode == 1;
Writer.WriteBool(boolBWMode); Writer.WriteBool(boolBWMode);
this.xfrm.Write_ToBinary2(Writer); Writer.WriteBool(isRealObject(this.xfrm));
if(isRealObject(this.xfrm))
this.xfrm.Write_ToBinary2(Writer);
var flag = this.geometry != null; var flag = this.geometry != null;
Writer.WriteBool(flag); Writer.WriteBool(flag);
if(flag) if(flag)
...@@ -3148,7 +3150,8 @@ function CSpPr() ...@@ -3148,7 +3150,8 @@ function CSpPr()
var boolBWMode = Reader.GetBool(); var boolBWMode = Reader.GetBool();
this.bwMode = boolBWMode ? 1 : 0; this.bwMode = boolBWMode ? 1 : 0;
this.xfrm.Read_FromBinary2(Reader); if(Reader.GetBool())
this.xfrm.Read_FromBinary2(Reader);
var flag = Reader.GetBool(); var flag = Reader.GetBool();
if(flag) if(flag)
{ {
......
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