- Timestamp:
- Aug 15, 2006, 1:51:45 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Transmission.xcodeproj/project.pbxproj
r780 r782 128 128 A2C655650A04FEDC00E9FD82 /* BottomBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = A2C655640A04FEDC00E9FD82 /* BottomBorder.png */; }; 129 129 A2D0E0490A54A97C003C72CF /* Bandwidth.png in Resources */ = {isa = PBXBuildFile; fileRef = A2D0E0480A54A97C003C72CF /* Bandwidth.png */; }; 130 A2D4F0830A915F6600890C32 /* RedDot.tiff in Resources */ = {isa = PBXBuildFile; fileRef = A2D4F0820A915F6600890C32 /* RedDot.tiff */; }; 131 A2D4F0850A915F7200890C32 /* GreenDot.tiff in Resources */ = {isa = PBXBuildFile; fileRef = A2D4F0840A915F7200890C32 /* GreenDot.tiff */; }; 130 132 A2F40AE40A361C00006B8288 /* Transmission.icns in Resources */ = {isa = PBXBuildFile; fileRef = 4D2784360905709500687951 /* Transmission.icns */; }; 131 133 A2F6DB090A55F31C0058D1E5 /* SpeedLimitButton.png in Resources */ = {isa = PBXBuildFile; fileRef = A2F6DB070A55F31C0058D1E5 /* SpeedLimitButton.png */; }; … … 331 333 A2C655640A04FEDC00E9FD82 /* BottomBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = BottomBorder.png; path = macosx/Images/BottomBorder.png; sourceTree = "<group>"; }; 332 334 A2D0E0480A54A97C003C72CF /* Bandwidth.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Bandwidth.png; path = macosx/Images/Bandwidth.png; sourceTree = "<group>"; }; 335 A2D4F0820A915F6600890C32 /* RedDot.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; name = RedDot.tiff; path = macosx/Images/RedDot.tiff; sourceTree = "<group>"; }; 336 A2D4F0840A915F7200890C32 /* GreenDot.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; name = GreenDot.tiff; path = macosx/Images/GreenDot.tiff; sourceTree = "<group>"; }; 333 337 A2F6DB070A55F31C0058D1E5 /* SpeedLimitButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = SpeedLimitButton.png; path = macosx/Images/SpeedLimitButton.png; sourceTree = "<group>"; }; 334 338 A2F8951E0A2D4BA500ED2127 /* Credits.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = Credits.rtf; path = macosx/Credits.rtf; sourceTree = "<group>"; }; … … 441 445 A2305A7E0A3DC9E400AB2D77 /* ProgressBarGray.png */, 442 446 A2305A7F0A3DC9E400AB2D77 /* ProgressBarGreen.png */, 447 A2D4F0840A915F7200890C32 /* GreenDot.tiff */, 448 A2D4F0820A915F6600890C32 /* RedDot.tiff */, 443 449 A20AB97A0A5C622A004F81FA /* SmallTurtle.png */, 444 450 A2D0E0480A54A97C003C72CF /* Bandwidth.png */, … … 759 765 A29597350A72A9E10057248B /* StatusBarBackground.png in Resources */, 760 766 A259317E0A73B2CC002F4FE7 /* Transmission Help in Resources */, 767 A2D4F0830A915F6600890C32 /* RedDot.tiff in Resources */, 768 A2D4F0850A915F7200890C32 /* GreenDot.tiff in Resources */, 761 769 ); 762 770 runOnlyForDeploymentPostprocessing = 0; -
trunk/macosx/InfoWindowController.h
r780 r782 31 31 NSArray * fTorrents; 32 32 NSMutableArray * fPeers, * fFiles; 33 NSImage * fAppIcon, * f CheckImage;33 NSImage * fAppIcon, * fDotGreen, * fDotRed; 34 34 35 35 IBOutlet NSTabView * fTabView; -
trunk/macosx/InfoWindowController.m
r781 r782 57 57 { 58 58 fAppIcon = [[NSApp applicationIconImage] copy]; 59 fCheckImage = [NSImage imageNamed: @"NSMenuCheckmark"]; 59 fDotGreen = [NSImage imageNamed: @"GreenDot.tiff"]; 60 fDotRed = [NSImage imageNamed: @"RedDot.tiff"]; 60 61 61 62 fTorrents = [[NSArray alloc] init]; … … 454 455 455 456 if ([ident isEqualToString: @"Connected"]) 456 return [[peer objectForKey: @"Connected"] boolValue] ? f CheckImage : nil;457 return [[peer objectForKey: @"Connected"] boolValue] ? fDotGreen : fDotRed; 457 458 else if ([ident isEqualToString: @"UL To"]) 458 459 return [[peer objectForKey: @"UL To"] boolValue] ? @"Y" : @"";
Note: See TracChangeset
for help on using the changeset viewer.