Changeset 3121
- Timestamp:
- 07/12/05 00:06:19 (3 years ago)
- Files:
-
- Footagehead/trunk/FHFileHandler.m (modified) (3 diffs)
- Footagehead/trunk/FHHTMLParser.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/FHFileHandler.m
r3102 r3121 115 115 116 116 - (NSArray *)files { 117 NSArray *types, *files; 117 NSSet *types; 118 NSArray *files; 118 119 NSString *name, *path, *extension; 119 120 FHFile *file; … … 128 129 files = [files sortedArrayUsingFunction:compareFile context:NULL]; 129 130 count = [files count]; 130 types = [ FHFileHandler handledFileTypes];131 types = [NSSet setWithArray:[FHFileHandler handledFileTypes]]; 131 132 _files = [[NSMutableArray alloc] initWithCapacity:count]; 132 133 … … 175 176 176 177 @end 178 Footagehead/trunk/FHHTMLParser.m
r2944 r3121 37 37 NSMutableSet *set; 38 38 NSCharacterSet *skipSet; 39 NS Array*types;39 NSSet *types; 40 40 NSString *token, *link, *path; 41 41 ZAURL *url; … … 70 70 count = [links count]; 71 71 urls = [NSMutableArray arrayWithCapacity:count]; 72 types = [NS Image FHImageFileTypes];72 types = [NSSet setWithArray:[NSImage FHImageFileTypes]]; 73 73 74 74 for(i = 0; i < count; i++) {
