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() ...@@ -121,6 +121,7 @@ CChartSpace.prototype.handleUpdatePosition = function()
// this.recalcDLbls(); // this.recalcDLbls();
//this.setRecalculateInfo(); //this.setRecalculateInfo();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CChartSpace.prototype.handleUpdateExtents = function() CChartSpace.prototype.handleUpdateExtents = function()
{ {
...@@ -129,12 +130,14 @@ CChartSpace.prototype.handleUpdateExtents = function() ...@@ -129,12 +130,14 @@ CChartSpace.prototype.handleUpdateExtents = function()
this.recalcTransform(); this.recalcTransform();
this.recalcTitles(); this.recalcTitles();
this.handleUpdateInternalChart(); this.handleUpdateInternalChart();
delete this.fromSerialize;
}; };
CChartSpace.prototype.handleUpdateFlip = function() CChartSpace.prototype.handleUpdateFlip = function()
{ {
this.recalcTransform(); this.recalcTransform();
//this.setRecalculateInfo(); //this.setRecalculateInfo();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CChartSpace.prototype.handleUpdateChart = function() CChartSpace.prototype.handleUpdateChart = function()
{ {
......
...@@ -168,11 +168,13 @@ CGroupShape.prototype.handleUpdatePosition = function() ...@@ -168,11 +168,13 @@ CGroupShape.prototype.handleUpdatePosition = function()
} }
} }
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CGroupShape.prototype.handleUpdateExtents = function() CGroupShape.prototype.handleUpdateExtents = function()
{ {
this.recalcTransform(); this.recalcTransform();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CGroupShape.prototype.handleUpdateRot = CGroupShape.prototype.handleUpdatePosition; CGroupShape.prototype.handleUpdateRot = CGroupShape.prototype.handleUpdatePosition;
CGroupShape.prototype.handleUpdateFlip = CGroupShape.prototype.handleUpdatePosition; CGroupShape.prototype.handleUpdateFlip = CGroupShape.prototype.handleUpdatePosition;
......
...@@ -78,6 +78,7 @@ CImageShape.prototype.handleUpdatePosition = function() ...@@ -78,6 +78,7 @@ CImageShape.prototype.handleUpdatePosition = function()
this.recalcTransform(); this.recalcTransform();
this.recalcBounds(); this.recalcBounds();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CImageShape.prototype.handleUpdateExtents = function() CImageShape.prototype.handleUpdateExtents = function()
{ {
...@@ -85,17 +86,20 @@ CImageShape.prototype.handleUpdateExtents = function() ...@@ -85,17 +86,20 @@ CImageShape.prototype.handleUpdateExtents = function()
this.recalcBounds(); this.recalcBounds();
this.recalcTransform(); this.recalcTransform();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CImageShape.prototype.handleUpdateRot = function() CImageShape.prototype.handleUpdateRot = function()
{ {
this.recalcTransform(); this.recalcTransform();
this.recalcBounds(); this.recalcBounds();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CImageShape.prototype.handleUpdateFlip = function() CImageShape.prototype.handleUpdateFlip = function()
{ {
this.recalcTransform(); this.recalcTransform();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CImageShape.prototype.handleUpdateFill = function() CImageShape.prototype.handleUpdateFill = function()
{ {
......
...@@ -226,6 +226,7 @@ CShape.prototype.handleUpdatePosition = function() ...@@ -226,6 +226,7 @@ CShape.prototype.handleUpdatePosition = function()
this.recalcBounds(); this.recalcBounds();
this.recalcTransformText(); this.recalcTransformText();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CShape.prototype.handleUpdateExtents = function() CShape.prototype.handleUpdateExtents = function()
{ {
...@@ -235,6 +236,7 @@ CShape.prototype.handleUpdateExtents = function() ...@@ -235,6 +236,7 @@ CShape.prototype.handleUpdateExtents = function()
this.recalcTransform(); this.recalcTransform();
this.recalcContent(); this.recalcContent();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CShape.prototype.handleUpdateRot = function() CShape.prototype.handleUpdateRot = function()
{ {
...@@ -246,6 +248,7 @@ CShape.prototype.handleUpdateRot = function() ...@@ -246,6 +248,7 @@ CShape.prototype.handleUpdateRot = function()
this.recalcTransformText(); this.recalcTransformText();
this.recalcBounds(); this.recalcBounds();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CShape.prototype.handleUpdateFlip = function() CShape.prototype.handleUpdateFlip = function()
{ {
...@@ -253,6 +256,7 @@ CShape.prototype.handleUpdateFlip = function() ...@@ -253,6 +256,7 @@ CShape.prototype.handleUpdateFlip = function()
this.recalcTransformText(); this.recalcTransformText();
this.recalcContent(); this.recalcContent();
this.addToRecalculate(); this.addToRecalculate();
delete this.fromSerialize;
}; };
CShape.prototype.handleUpdateFill = function() 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