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

не добавляем изменения в историю в классе CLn

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60900 954022d7-b5bf-4e40-9824-e11837661b57
parent 12649251
...@@ -5822,54 +5822,54 @@ CLn.prototype = ...@@ -5822,54 +5822,54 @@ CLn.prototype =
setFill: function(fill) setFill: function(fill)
{ {
History.Add(this, {Type:historyitem_Ln_SetFill, oldFill: this.Fill, newFill: fill}); // History.Add(this, {Type:historyitem_Ln_SetFill, oldFill: this.Fill, newFill: fill});
this.Fill = fill; this.Fill = fill;
}, },
setPrstDash: function(prstDash) setPrstDash: function(prstDash)
{ {
History.Add(this, {Type:historyitem_Ln_SetPrstDash, oldPrstDash: this.prstDash, newPrstDash: prstDash}); // History.Add(this, {Type:historyitem_Ln_SetPrstDash, oldPrstDash: this.prstDash, newPrstDash: prstDash});
this.prstDash = prstDash; this.prstDash = prstDash;
}, },
setJoin: function(join) setJoin: function(join)
{ {
History.Add(this, {Type:historyitem_Ln_SetJoin, oldJoin: this.Join, newJoin: join}); // History.Add(this, {Type:historyitem_Ln_SetJoin, oldJoin: this.Join, newJoin: join});
this.Join = join; this.Join = join;
}, },
setHeadEnd: function(headEnd) setHeadEnd: function(headEnd)
{ {
History.Add(this, {Type:historyitem_Ln_SetHeadEnd, oldHeadEnd: this.headEnd, newHeadEnd: headEnd}); // History.Add(this, {Type:historyitem_Ln_SetHeadEnd, oldHeadEnd: this.headEnd, newHeadEnd: headEnd});
this.headEnd = headEnd; this.headEnd = headEnd;
}, },
setTailEnd: function(tailEnd) setTailEnd: function(tailEnd)
{ {
History.Add(this, {Type:historyitem_Ln_SetTailEnd, oldTailEnd: this.tailEnd, newTailEnd: tailEnd}); // History.Add(this, {Type:historyitem_Ln_SetTailEnd, oldTailEnd: this.tailEnd, newTailEnd: tailEnd});
this.tailEnd = tailEnd; this.tailEnd = tailEnd;
}, },
setAlgn: function(algn) setAlgn: function(algn)
{ {
History.Add(this, {Type:historyitem_Ln_SetAlgn, oldAlgn: this.algn, newAlgn: algn}); // History.Add(this, {Type:historyitem_Ln_SetAlgn, oldAlgn: this.algn, newAlgn: algn});
this.algn = algn; this.algn = algn;
}, },
setCap: function(cap) setCap: function(cap)
{ {
History.Add(this, {Type:historyitem_Ln_SetCap, oldCap: this.cap, newCap: cap}); // History.Add(this, {Type:historyitem_Ln_SetCap, oldCap: this.cap, newCap: cap});
this.cap = cap; this.cap = cap;
}, },
setCmpd: function(cmpd) setCmpd: function(cmpd)
{ {
History.Add(this, {Type:historyitem_Ln_SetCmpd, oldCmpd: this.cmpd, newCmpd: cmpd}); // History.Add(this, {Type:historyitem_Ln_SetCmpd, oldCmpd: this.cmpd, newCmpd: cmpd});
this.cmpd = cmpd; this.cmpd = cmpd;
}, },
setW: function(w) setW: function(w)
{ {
History.Add(this, {Type:historyitem_Ln_SetW, oldW: this.w, newW: w}); // History.Add(this, {Type:historyitem_Ln_SetW, oldW: this.w, newW: w});
this.w = w; this.w = w;
}, },
......
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