Commit a85cb39c authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Правка бага 22095 - Копия копии изображения, скопированного через Ctrl...

Правка бага 22095 - Копия копии изображения, скопированного через Ctrl становится перевернутой на 180 градусов

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52134 954022d7-b5bf-4e40-9824-e11837661b57
parent d76a8d4e
...@@ -2059,7 +2059,7 @@ CChartAsGroup.prototype = ...@@ -2059,7 +2059,7 @@ CChartAsGroup.prototype =
r.GetBool(); r.GetBool();
this.setXfrmObject(new CXfrm()); this.setXfrmObject(new CXfrm());
var Reader = r; var Reader = r;
var offX, offY, extX, extY, flipH, flipV, rot; var offX, offY, extX, extY, flipH = null, flipV = null, rot = null;
var flag = Reader.GetBool(); var flag = Reader.GetBool();
if(flag) if(flag)
offX = Reader.GetDouble(); offX = Reader.GetDouble();
......
...@@ -1800,7 +1800,7 @@ CGroupShape.prototype = ...@@ -1800,7 +1800,7 @@ CGroupShape.prototype =
var Reader = r; var Reader = r;
var offX, offY, extX, extY, flipH, flipV, rot; var offX, offY, extX, extY, flipH = null, flipV = null, rot = null;
var flag = Reader.GetBool(); var flag = Reader.GetBool();
if(flag) if(flag)
offX = Reader.GetDouble(); offX = Reader.GetDouble();
......
...@@ -1316,7 +1316,7 @@ CImageShape.prototype = ...@@ -1316,7 +1316,7 @@ CImageShape.prototype =
r.GetBool(); r.GetBool();
this.setXfrmObject(new CXfrm()); this.setXfrmObject(new CXfrm());
var Reader = r; var Reader = r;
var offX, offY, extX, extY, flipH, flipV, rot; var offX, offY, extX, extY, flipH = null, flipV = null, rot = null;
var flag = Reader.GetBool(); var flag = Reader.GetBool();
if(flag) if(flag)
offX = Reader.GetDouble(); offX = Reader.GetDouble();
......
...@@ -3492,7 +3492,7 @@ CShape.prototype = ...@@ -3492,7 +3492,7 @@ CShape.prototype =
var Reader = r; var Reader = r;
var offX, offY, extX, extY, flipH, flipV, rot; var offX, offY, extX, extY, flipH = null, flipV = null, rot = null;
var flag = Reader.GetBool(); var flag = Reader.GetBool();
if(flag) if(flag)
offX = Reader.GetDouble(); offX = Reader.GetDouble();
......
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