Changeset 5204
- Timestamp:
- 01/26/08 12:40:13 (6 months ago)
- Files:
-
- WiredClient/trunk/WCTransfers.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/WCTransfers.m
r5199 r5204 73 73 - (void)_startTransfer:(WCTransfer *)transfer; 74 74 - (void)_finishTransfer:(WCTransfer *)transfer; 75 - (void)_reloadFiles:(NSDictionary *)dictionary; 75 76 76 77 - (BOOL)_downloadFile:(WCFile *)file toFolder:(NSString *)destination preview:(BOOL)preview; … … 507 508 NULL]; 508 509 509 [[self connection] postNotificationName:WCFilesShouldReload 510 object:[self connection] 511 userInfo:dictionary]; 510 [self performSelector:@selector(_reloadFiles:) withObject:dictionary afterDelay:1.0]; 512 511 } 513 512 } else { … … 537 536 [file release]; 538 537 [path release]; 538 } 539 540 541 542 - (void)_reloadFiles:(NSDictionary *)dictionary { 543 [[self connection] postNotificationName:WCFilesShouldReload 544 object:[self connection] 545 userInfo:dictionary]; 539 546 } 540 547
