- Timestamp:
- Oct 2, 2006, 5:21:10 AM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/InfoWindowController.m
r923 r973 359 359 360 360 [fPeerTable reloadData]; 361 #warning use [fpeers count]362 //[fPeerTableStatusField setStringValue: [NSString stringWithFormat: @"%d of %d connected",363 // [torrent totalPeers], [fPeers count]]];364 361 } 365 362 -
trunk/macosx/TorrentCell.m
r920 r973 34 34 - (void) placeBar: (NSImage *) barImage width: (float) width point: (NSPoint) point; 35 35 - (void) buildSimpleBar: (float) width point: (NSPoint) point; 36 //- (void) buildAdvancedBar: (float) widthFloat point: (NSPoint) point;36 - (void) buildAdvancedBar: (float) widthFloat point: (NSPoint) point; 37 37 38 38 @end … … 159 159 160 160 //place actual advanced bar 161 NSImage * im g= [info objectForKey: @"AdvancedBar"];162 [im gsetSize: NSMakeSize(widthFloat, BAR_HEIGHT)];163 [im gcompositeToPoint: point operation: NSCompositeSourceOver];161 NSImage * image = [info objectForKey: @"AdvancedBar"]; 162 [image setSize: NSMakeSize(widthFloat, BAR_HEIGHT)]; 163 [image compositeToPoint: point operation: NSCompositeSourceOver]; 164 164 165 165 [self placeBar: fProgressAdvanced width: widthFloat point: point];
Note: See TracChangeset
for help on using the changeset viewer.