Commit 01d34798 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 35043

parent 21bd611c
...@@ -7573,7 +7573,7 @@ CBodyPr.prototype = ...@@ -7573,7 +7573,7 @@ CBodyPr.prototype =
w.WriteBool(flag); w.WriteBool(flag);
if(flag) if(flag)
{ {
w.WriteBool(this.spcCol); w.WriteDouble(this.spcCol);
} }
flag = this.spcFirstLastPara != null; flag = this.spcFirstLastPara != null;
...@@ -7724,7 +7724,7 @@ CBodyPr.prototype = ...@@ -7724,7 +7724,7 @@ CBodyPr.prototype =
flag = r.GetBool(); flag = r.GetBool();
if(flag) if(flag)
{ {
this.spcCol = r.GetBool(); this.spcCol = r.GetDouble();
} }
flag = r.GetBool(); flag = r.GetBool();
...@@ -8042,7 +8042,7 @@ CBodyPr.prototype = ...@@ -8042,7 +8042,7 @@ CBodyPr.prototype =
w.WriteBool(flag); w.WriteBool(flag);
if(flag) if(flag)
{ {
w.WriteBool(this.spcCol); w.WriteDouble(this.spcCol);
} }
flag = this.spcFirstLastPara != null; flag = this.spcFirstLastPara != null;
...@@ -8191,7 +8191,7 @@ CBodyPr.prototype = ...@@ -8191,7 +8191,7 @@ CBodyPr.prototype =
flag = r.GetBool(); flag = r.GetBool();
if(flag) if(flag)
{ {
this.spcCol = r.GetBool(); this.spcCol = r.GetDouble();
} }
flag = r.GetBool(); flag = r.GetBool();
......
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