Changeset 558
- Timestamp:
- Jul 10, 2006, 1:09:22 AM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r556 r558 360 360 [torrent update]; 361 361 } 362 363 [fTorrents release];364 362 } 365 363 -
trunk/macosx/PrefsController.m
r539 r558 223 223 [item setImage: [NSImage imageNamed: @"Preferences.png"]]; 224 224 [item setTarget: self]; 225 [item setAction: @selector( showGeneralPref:)];225 [item setAction: @selector(showGeneralPref:)]; 226 226 } 227 227 else if ([ident isEqualToString: TOOLBAR_TRANSFERS]) … … 230 230 [item setImage: [NSImage imageNamed: @"Transfers.png"]]; 231 231 [item setTarget: self]; 232 [item setAction: @selector( showTransfersPref:)];232 [item setAction: @selector(showTransfersPref:)]; 233 233 } 234 234 else if ([ident isEqualToString: TOOLBAR_BANDWIDTH]) … … 237 237 [item setImage: [NSImage imageNamed: @"Bandwidth.png"]]; 238 238 [item setTarget: self]; 239 [item setAction: @selector( showBandwidthPref:)];239 [item setAction: @selector(showBandwidthPref:)]; 240 240 } 241 241 else if ([ident isEqualToString: TOOLBAR_NETWORK]) … … 244 244 [item setImage: [NSImage imageNamed: @"Network.png"]]; 245 245 [item setTarget: self]; 246 [item setAction: @selector( showNetworkPref:)];246 [item setAction: @selector(showNetworkPref:)]; 247 247 } 248 248 else
Note: See TracChangeset
for help on using the changeset viewer.