Changeset 23033
- Timestamp:
- 04/03/2008 11:17:54 AM (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Frameworks/AIUtilities Framework/Source/AITextAttributes.m
r19270 r23033 47 47 { 48 48 if ((self = [self init])) { 49 dictionary = [[NSMutableDictionary alloc] init];50 51 49 fontFamilyName = [inFamilyName retain]; 52 50 fontTraitsMask = inTraits; … … 60 58 { 61 59 if ((self = [self init])) { 60 [dictionary release]; 62 61 dictionary = [inAttributes mutableCopy]; 63 62 … … 81 80 { 82 81 if ((self = [super init])) { 83 dictionary = nil; 82 dictionary = [[NSMutableDictionary alloc] init]; 83 84 84 fontFamilyName = nil; 85 85 fontTraitsMask = 0;