Show
Ignore:
Timestamp:
02/25/2008 07:48:21 PM (4 years ago)
Author:
gbooker
Message:

Patch from Stephan again. I changed the int to a real in the info.plist and the padding was too large, so I changed it to a value that is smaller (by half), but still large enough (by examining the classdump offsets).
Refs #126

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/SapphireFrappliance/SapphireAppliance.m

    r494 r496  
    122122- (id)applianceController 
    123123{ 
    124         NSLog(@"in -SapphireApplicance applianceController"); 
    125124        return ( [[[SapphireApplianceController alloc] initWithScene: nil] autorelease] ); 
    126125} 
     
    136135 */ 
    137136-(id)applianceInfo { 
    138         NSLog(@"in -SapphireApplicance applianceInfo"); 
    139          
    140137        BRApplianceInfo* p = [BRApplianceInfo infoForApplianceBundle:[NSBundle bundleForClass:[self class]]]; 
    141138        NSMutableArray *categories = [NSMutableArray array]; 
     
    146143                BRApplianceCategory *category = [BRApplianceCategory categoryWithName:[obj valueForKey:@"name"] identifier:[obj valueForKey:@"identifier"] preferredOrder:[[obj valueForKey:@"preferred-order"] floatValue]]; 
    147144                [categories addObject:category]; 
    148                 NSLog(@"asdsa"); 
    149145        } 
    150146        return [BRApplianceInfo infoForApplianceBundle:[NSBundle bundleForClass:[self class]]]; 
     
    152148 
    153149-(id)applianceCategories { 
    154         NSLog(@"in -SapphireApplicance applianceCategories"); 
    155150        NSMutableArray *categories = [NSMutableArray array]; 
    156151