Changeset 1019
- Timestamp:
- 07/31/08 08:24:58 (1 month ago)
- Files:
-
- trunk/chrome/content/dta/manager.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/manager.js
r1016 r1019 1357 1357 _completeEvents: [], 1358 1358 complete: function QI_complete(exception) { 1359 for each (let a in 'speeds', 'chunks') { 1360 delete this[a]; 1361 this[a] = []; 1362 } 1359 1363 if (exception) { 1360 1364 this.fail(_("accesserror"), _("permissions") + " " + _("destpath") + ". " + _("checkperm"), _("accesserror")); … … 1379 1383 return; 1380 1384 } 1381 this.chunks = [];1382 1385 this.activeChunks = 0; 1383 1386 this.state = COMPLETE; 1384 1387 this.status = TEXT_COMPLETE; 1388 this.visitors = new VisitorManager(); 1385 1389 }, 1386 1390 rebuildDestination: function QI_rebuildDestination() { … … 1849 1853 this._outStream.flush(); 1850 1854 this._outStream.close(); 1851 delete this._outStream;1852 1855 } 1853 1856 this._buffered = 0;
