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

Bug 26679 - [Coedit] Другому пользователю не передается изменение графического...

Bug 26679 - [Coedit] Другому пользователю не передается изменение графического объекта, расположенного на определенном листе

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58614 954022d7-b5bf-4e40-9824-e11837661b57
parent 57ffb1ad
......@@ -121,6 +121,7 @@ CChartSpace.prototype.handleUpdatePosition = function()
// this.recalcDLbls();
//this.setRecalculateInfo();
this.addToRecalculate();
delete this.fromSerialize;
};
CChartSpace.prototype.handleUpdateExtents = function()
{
......@@ -129,12 +130,14 @@ CChartSpace.prototype.handleUpdateExtents = function()
this.recalcTransform();
this.recalcTitles();
this.handleUpdateInternalChart();
delete this.fromSerialize;
};
CChartSpace.prototype.handleUpdateFlip = function()
{
this.recalcTransform();
//this.setRecalculateInfo();
this.addToRecalculate();
delete this.fromSerialize;
};
CChartSpace.prototype.handleUpdateChart = function()
{
......
......@@ -168,11 +168,13 @@ CGroupShape.prototype.handleUpdatePosition = function()
}
}
this.addToRecalculate();
delete this.fromSerialize;
};
CGroupShape.prototype.handleUpdateExtents = function()
{
this.recalcTransform();
this.addToRecalculate();
delete this.fromSerialize;
};
CGroupShape.prototype.handleUpdateRot = CGroupShape.prototype.handleUpdatePosition;
CGroupShape.prototype.handleUpdateFlip = CGroupShape.prototype.handleUpdatePosition;
......
......@@ -78,6 +78,7 @@ CImageShape.prototype.handleUpdatePosition = function()
this.recalcTransform();
this.recalcBounds();
this.addToRecalculate();
delete this.fromSerialize;
};
CImageShape.prototype.handleUpdateExtents = function()
{
......@@ -85,17 +86,20 @@ CImageShape.prototype.handleUpdateExtents = function()
this.recalcBounds();
this.recalcTransform();
this.addToRecalculate();
delete this.fromSerialize;
};
CImageShape.prototype.handleUpdateRot = function()
{
this.recalcTransform();
this.recalcBounds();
this.addToRecalculate();
delete this.fromSerialize;
};
CImageShape.prototype.handleUpdateFlip = function()
{
this.recalcTransform();
this.addToRecalculate();
delete this.fromSerialize;
};
CImageShape.prototype.handleUpdateFill = function()
{
......
......@@ -226,6 +226,7 @@ CShape.prototype.handleUpdatePosition = function()
this.recalcBounds();
this.recalcTransformText();
this.addToRecalculate();
delete this.fromSerialize;
};
CShape.prototype.handleUpdateExtents = function()
{
......@@ -235,6 +236,7 @@ CShape.prototype.handleUpdateExtents = function()
this.recalcTransform();
this.recalcContent();
this.addToRecalculate();
delete this.fromSerialize;
};
CShape.prototype.handleUpdateRot = function()
{
......@@ -246,6 +248,7 @@ CShape.prototype.handleUpdateRot = function()
this.recalcTransformText();
this.recalcBounds();
this.addToRecalculate();
delete this.fromSerialize;
};
CShape.prototype.handleUpdateFlip = function()
{
......@@ -253,6 +256,7 @@ CShape.prototype.handleUpdateFlip = function()
this.recalcTransformText();
this.recalcContent();
this.addToRecalculate();
delete this.fromSerialize;
};
CShape.prototype.handleUpdateFill = function()
{
......
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