Changeset 3504
- Timestamp:
- Oct 23, 2007, 11:41:03 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Transmission.xcodeproj/project.pbxproj
r3498 r3504 365 365 4DFBC2DE09C0970D00D5C571 /* Torrent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Torrent.m; path = macosx/Torrent.m; sourceTree = "<group>"; }; 366 366 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; }; 368 368 A200B8390A2263BA007BBB1E /* InfoWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoWindowController.h; path = macosx/InfoWindowController.h; sourceTree = "<group>"; }; 369 369 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 374 374 [nc addObserver: self selector: @selector(updateUI) 375 375 name: @"UpdateUI" object: nil]; 376 377 [nc addObserver: fInfoController selector: @selector(updateInfoSettings)378 name: @"UpdateInfoSettings" object: nil];379 376 380 377 [nc addObserver: self selector: @selector(torrentFinishedDownloading:) -
trunk/macosx/Torrent.m
r3485 r3504 444 444 [self changeDownloadFolder: folder]; 445 445 446 [[NSNotificationCenter defaultCenter] postNotificationName: @"Update InfoSettings" object: nil];446 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil]; 447 447 448 448 [self endQuickPause]; … … 557 557 [self update]; 558 558 559 [[NSNotificationCenter defaultCenter] postNotificationName: @"Update InfoSettings" object: nil];559 [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil]; 560 560 } 561 561
Note: See TracChangeset
for help on using the changeset viewer.