Changeset 5035 for trunk/macosx/Torrent.m
- Timestamp:
- Feb 14, 2008, 4:38:33 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Torrent.m
r4930 r5035 709 709 - (NSString *) comment 710 710 { 711 return [NSString stringWithUTF8String: fInfo->comment];711 return fInfo->comment != NULL ? [NSString stringWithUTF8String: fInfo->comment] : @""; 712 712 } 713 713 714 714 - (NSString *) creator 715 715 { 716 return [NSString stringWithUTF8String: fInfo->creator];716 return fInfo->creator != NULL ? [NSString stringWithUTF8String: fInfo->creator] : @""; 717 717 } 718 718
Note: See TracChangeset
for help on using the changeset viewer.