Remove unused parameter.

This commit is contained in:
Jürg Lehni 2011-05-05 11:20:37 +01:00
parent 5dfec35dc1
commit 32ed418bdf

View file

@ -43,7 +43,7 @@ var PlacedSymbol = this.PlacedSymbol = Item.extend({
},
getBounds: function() {
var bounds = this.symbol._definition.getStrokeBounds(this.matrix, true);
var bounds = this.symbol._definition.getStrokeBounds(this.matrix);
return LinkedRectangle.create(this, 'setBounds',
bounds.x, bounds.y, bounds.width, bounds.height);
},