Commit 01d34798 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 35043

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