Changeset 2385
- Timestamp:
- Jul 18, 2007, 1:29:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r2327 r2385 3218 3218 - (BOOL) ipcAddTorrents: (NSArray *) torrents 3219 3219 { 3220 /* 'torrents' is NSArray of NSString torrent file paths, should 3221 return NO if torrent fails to load */ 3222 return NO; 3220 int oldCount = [fTorrents count]; 3221 3222 [self openFiles: torrents]; 3223 3224 return [fTorrents count] > oldCount; 3223 3225 } 3224 3226 … … 3226 3228 directory: (NSString *) dir 3227 3229 { 3228 /* 'path' is path to torrent file, 'dir' is the directory it3229 should download it's files to and may be nil, should return NO3230 if torrent fails to load */3231 3230 return NO; 3232 3231 }
Note: See TracChangeset
for help on using the changeset viewer.