Adium

Changeset 13810

Show
Ignore:
Timestamp:
10/25/2005 10:30:27 PM (3 years ago)
Author:
catfish_man
Message:

Coding style fixage. Thanks Evan

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Frameworks/Adium Framework/AISoundSet.m

    r13808 r13810  
    131131        BOOL    success = YES; 
    132132        NSBundle * xtraBundle = [NSBundle bundleWithPath:inPath]; 
    133         if(xtraBundle && [[xtraBundle objectForInfoDictionaryKey:@"XtraBundleVersion"] isEqualToNumber:[NSNumber numberWithInt:1]])//This checks for a new-style xtra 
    134         { 
     133        if(xtraBundle && [[xtraBundle objectForInfoDictionaryKey:@"XtraBundleVersion"] isEqualToNumber:[NSNumber numberWithInt:1]]) { 
    135134                inPath = [xtraBundle resourcePath]; 
    136135                name = [[xtraBundle objectForInfoDictionaryKey:@"CFBundleName"]retain]; 
  • trunk/Plugins/Emoticons/AIEmoticonPack.m

    r13805 r13810  
    6363                name = [[[inPath lastPathComponent] stringByDeletingPathExtension] retain]; 
    6464                NSBundle * xtraBundle = [NSBundle bundleWithPath:path]; 
    65                 if(xtraBundle && [[xtraBundle objectForInfoDictionaryKey:@"XtraBundleVersion"] isEqualToNumber:[NSNumber numberWithInt:1]])//This checks for a new-style xtra 
    66                 { 
     65                if(xtraBundle && [[xtraBundle objectForInfoDictionaryKey:@"XtraBundleVersion"] isEqualToNumber:[NSNumber numberWithInt:1]]) {//This checks for a new-style xtra 
    6766                        path = [xtraBundle resourcePath]; //new style xtras store the same info, but it's in Contents/Resources/ so that we can have an info.plist file and use NSBundle 
    6867                } 
  • trunk/Source/AIDockController.m

    r13806 r13810  
    140140        NSString * path; 
    141141        NSBundle * xtraBundle; 
    142         while((path = [folderPathEnumerator nextObject])) 
    143         { 
     142        while((path = [folderPathEnumerator nextObject])) { 
    144143                xtraBundle = [NSBundle bundleWithPath:path]; 
    145144                if(xtraBundle && [[xtraBundle objectForInfoDictionaryKey:@"XtraBundleVersion"] isEqualToNumber:[NSNumber numberWithInt:1]])//This checks for a new-style xtra