Changeset 5487
- Timestamp:
- 05/02/08 04:31:15 (2 weeks ago)
- Files:
-
- Spiral/trunk/SPInspectorController.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Spiral/trunk/SPInspectorController.m
r5457 r5487 76 76 for(track in [movie tracks]) { 77 77 if([track isEnabled]) { 78 if([track attributeForKey:@"QTTrackFormatSummaryAttribute"]) { 78 string = [track attributeForKey:QTTrackFormatSummaryAttribute]; 79 80 if(!string) 81 string = [track attributeForKey:QTTrackMediaTypeAttribute]; 82 83 if(string) { 79 84 if([format length] > 0) 80 85 [format appendString:@"\n"]; 81 86 82 [format appendString: [track attributeForKey:@"QTTrackFormatSummaryAttribute"]];87 [format appendString:string]; 83 88 } 84 89 }
