Changeset 3504


Ignore:
Timestamp:
Oct 23, 2007, 11:41:03 AM (15 years ago)
Author:
livings124
Message:

fix notification to update info

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Transmission.xcodeproj/project.pbxproj

    r3498 r3504  
    365365                4DFBC2DE09C0970D00D5C571 /* Torrent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Torrent.m; path = macosx/Torrent.m; sourceTree = "<group>"; };
    366366                8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; name = Info.plist; path = macosx/Info.plist; sourceTree = "<group>"; };
    367                 8D1107320486CEB800E47090 /* Transmission.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = Transmission.app; sourceTree = BUILT_PRODUCTS_DIR; };
     367                8D1107320486CEB800E47090 /* Transmission.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Transmission.app; sourceTree = BUILT_PRODUCTS_DIR; };
    368368                A200B8390A2263BA007BBB1E /* InfoWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoWindowController.h; path = macosx/InfoWindowController.h; sourceTree = "<group>"; };
    369369                A200B83A0A2263BA007BBB1E /* InfoWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = InfoWindowController.m; path = macosx/InfoWindowController.m; sourceTree = "<group>"; };
  • trunk/macosx/Controller.m

    r3490 r3504  
    374374    [nc addObserver: self selector: @selector(updateUI)
    375375                    name: @"UpdateUI" object: nil];
    376    
    377     [nc addObserver: fInfoController selector: @selector(updateInfoSettings)
    378                     name: @"UpdateInfoSettings" object: nil];
    379376   
    380377    [nc addObserver: self selector: @selector(torrentFinishedDownloading:)
  • trunk/macosx/Torrent.m

    r3485 r3504  
    444444            [self changeDownloadFolder: folder];
    445445           
    446             [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateInfoSettings" object: nil];
     446            [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil];
    447447           
    448448            [self endQuickPause];
     
    557557    [self update];
    558558   
    559     [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateInfoSettings" object: nil];
     559    [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil];
    560560}
    561561
Note: See TracChangeset for help on using the changeset viewer.