Changeset 1738
- Timestamp:
- 10/26/06 11:22:37 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Tile.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Tile/WFS.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Tile.js
r1721 r1738 84 84 } 85 85 86 OpenLayers.Util.clearArray(this);86 this.clear(); 87 87 this.bounds = bounds.clone(); 88 88 this.position = position.clone(); … … 122 122 }; 123 123 124 trunk/openlayers/lib/OpenLayers/Tile/WFS.js
r1721 r1738 59 59 draw:function() { 60 60 if (this.drawn) { 61 OpenLayers.Util.clearArray(this);61 this.clear(); 62 62 } 63 63 OpenLayers.Tile.prototype.draw.apply(this, arguments); … … 132 132 ); 133 133 134
