Commit 6de00365 authored by Sergey Luzyanin's avatar Sergey Luzyanin

WriteLong for rot param

parent 3fec2226
......@@ -7442,7 +7442,7 @@ CBodyPr.prototype =
w.WriteBool(flag);
if(flag)
{
w.WriteDouble(this.rot);
w.WriteLong(this.rot);
}
flag = this.rtlCol != null;
......@@ -7594,7 +7594,7 @@ CBodyPr.prototype =
flag = r.GetBool();
if(flag)
{
this.rot = r.GetDouble();
this.rot = r.GetLong();
}
......@@ -7911,7 +7911,7 @@ CBodyPr.prototype =
w.WriteBool(flag);
if(flag)
{
w.WriteDouble(this.rot);
w.WriteLong(this.rot);
}
flag = this.rtlCol != null;
......@@ -8061,7 +8061,7 @@ CBodyPr.prototype =
flag = r.GetBool();
if(flag)
{
this.rot = r.GetDouble();
this.rot = r.GetLong();
}
......
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