Changeset 734 for trunk/macosx/PrefsController.m
- Timestamp:
- Aug 7, 2006, 1:03:14 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/PrefsController.m
r733 r734 194 194 //set play sound 195 195 [fPlayDownloadSoundCheck setState: [fDefaults boolForKey: @"PlayDownloadSound"]]; 196 [fPlaySeedingSoundCheck setState: [fDefaults boolForKey: @"PlaySeedingSound"]]; 196 197 197 198 //set start setting … … 516 517 - (void) setPlaySound: (id) sender 517 518 { 518 [fDefaults setBool: [sender state] forKey: @"PlayDownloadSound"]; 519 if (sender == fPlayDownloadSoundCheck) 520 [fDefaults setBool: [sender state] forKey: @"PlayDownloadSound"]; 521 else if (sender == fPlaySeedingSoundCheck) 522 [fDefaults setBool: [sender state] forKey: @"PlaySeedingSound"]; 523 else; 519 524 } 520 525
Note: See TracChangeset
for help on using the changeset viewer.