Changeset 729
- Timestamp:
- 10/31/07 16:27:19 (9 months ago)
- Files:
-
- trunk/Perian.xcodeproj/project.pbxproj (modified) (1 diff)
- trunk/Subtitles/SubATSUIRenderer.m (modified) (2 diffs)
- trunk/Subtitles/SubContext.m (modified) (1 diff)
- trunk/Subtitles/SubParsing.m.rl (modified) (1 diff)
- trunk/UniversalDetector/UniversalDetector.mm (modified) (1 diff)
- trunk/UniversalDetector/UniversalDetector.xcodeproj/project.pbxproj (modified) (2 diffs)
- trunk/createStaticLibs.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Perian.xcodeproj/project.pbxproj
r724 r729 1988 1988 ); 1989 1989 DEBUG_INFORMATION_FORMAT = dwarf; 1990 GCC_ENABLE_OBJC_GC = YES; 1990 1991 GCC_MODEL_TUNING = G5; 1991 1992 GCC_STRICT_ALIASING = YES; trunk/Subtitles/SubATSUIRenderer.m
r697 r729 38 38 CGColorRelease(shadowColor); 39 39 [super dealloc]; 40 } 41 42 -(void)finalize 43 { 44 ATSUDisposeStyle(style); 45 CGColorRelease(primaryColor); 46 CGColorRelease(outlineColor); 47 CGColorRelease(shadowColor); 48 [super finalize]; 40 49 } 41 50 … … 253 262 UCDisposeTextBreakLocator(&breakLocator); 254 263 [super dealloc]; 264 } 265 266 -(void)finalize 267 { 268 free(ubuffer); 269 UCDisposeTextBreakLocator(&breakLocator); 270 [super finalize]; 255 271 } 256 272 trunk/Subtitles/SubContext.m
r689 r729 148 148 [super dealloc]; 149 149 } 150 151 -(void)finalize 152 { 153 [delegate releaseStyleExtra:ex]; 154 [super finalize]; 155 } 150 156 @end 151 157 trunk/Subtitles/SubParsing.m.rl
r697 r729 39 39 [super dealloc]; 40 40 } 41 42 -(void)finalize {[delegate releaseSpanExtra:ex]; [super finalize];} 41 43 @end 42 44 trunk/UniversalDetector/UniversalDetector.mm
r406 r729 86 86 } 87 87 88 -(void)finalize 89 { 90 delete (wrappedUniversalDetector *)detectorptr; 91 [super finalize]; 92 } 93 88 94 -(void)analyzeData:(NSData *)data 89 95 { trunk/UniversalDetector/UniversalDetector.xcodeproj/project.pbxproj
r406 r729 450 450 isa = PBXProject; 451 451 buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "UniversalDetector" */; 452 compatibilityVersion = "Xcode 2.4"; 452 453 hasScannedForEncodings = 1; 453 454 mainGroup = 0867D691FE84028FC02AAC07 /* UniversalCharDet */; 454 455 productRefGroup = 034768DFFF38A50411DB9C8B /* Products */; 455 456 projectDirPath = ""; 457 projectRoot = ""; 456 458 targets = ( 457 459 8DC2EF4F0486A6940098B216 /* UniversalDetector */, … … 680 682 i386, 681 683 ); 684 GCC_ENABLE_OBJC_GC = YES; 682 685 GCC_WARN_ABOUT_RETURN_TYPE = YES; 683 686 GCC_WARN_UNUSED_VARIABLE = YES; trunk/createStaticLibs.sh
r725 r729 18 18 #no-pic only on pre-leopard 19 19 sdkflags="$sdkflags -mdynamic-no-pic" 20 generalConfigureOptions="$generalConfigureOptions --disable-altivec" 20 21 fi 21 22 export sdkflags
