Changeset 3199
- Timestamp:
- 08/16/05 19:14:49 (3 years ago)
- Files:
-
- WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/classes.nib (modified) (1 diff)
- WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/info.nib (modified) (1 diff)
- WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/keyedobjects.nib (modified) (previous)
- WiredServer/trunk/PreferencePane/prefix.pch (modified) (1 diff)
- WiredServer/trunk/WCConfigController.h (modified) (1 diff)
- WiredServer/trunk/WCConfigController.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/classes.nib
r3011 r3199 113 113 "_uploadSpeedTextField" = NSTextField; 114 114 "_urlTextField" = NSTextField; 115 "_use RendezvousButton" = NSButton;115 "_useZeroconfButton" = NSButton; 116 116 "_userPopUpButton" = NSPopUpButton; 117 117 }; WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/info.nib
r2987 r3199 12 12 </array> 13 13 <key>IBSystem Version</key> 14 <string>8 B15</string>14 <string>8C46</string> 15 15 </dict> 16 16 </plist> WiredServer/trunk/PreferencePane/prefix.pch
r3191 r3199 48 48 #import <openssl/rsa.h> 49 49 50 // --- Common 50 // --- Macros 51 #define NSLS NSLocalizedString 52 #define NSSWF NSString stringWithFormat 53 51 54 #define WPLS(string, comment) \ 52 55 NSLocalizedStringFromTableInBundle(string, NULL, \ 53 56 [NSBundle bundleWithIdentifier:@"com.zanka.WiredServer"], \ 54 57 comment) 55 56 #define WCLS WPLS 58 #define WCLS WPLS WiredServer/trunk/WCConfigController.h
r3011 r3199 42 42 IBOutlet NSButton *_selectBannerButton; 43 43 IBOutlet NSButton *_clearBannerButton; 44 IBOutlet NSButton *_use RendezvousButton;44 IBOutlet NSButton *_useZeroconfButton; 45 45 46 46 IBOutlet NSTextField *_totalDownloadsTextField; WiredServer/trunk/WCConfigController.m
r3191 r3199 285 285 [_selectBannerButton setEnabled:enabled]; 286 286 [_clearBannerButton setEnabled:enabled]; 287 [_use RendezvousButton setEnabled:enabled];287 [_useZeroconfButton setEnabled:enabled]; 288 288 [_totalDownloadsTextField setEnabled:enabled]; 289 289 [_clientDownloadsTextField setEnabled:enabled]; … … 414 414 [_descriptionTextField setStringValue:[_config stringForKey:@"description"]]; 415 415 [_bannerImageView setImage:[_config imageForKey:@"banner"]]; 416 [_use RendezvousButton setState:[_config boolForKey:@"zeroconf"]];416 [_useZeroconfButton setState:[_config boolForKey:@"zeroconf"]]; 417 417 [_launchAtBootButton setState:[[NSFileManager defaultManager] fileExistsAtPath: 418 418 WCExpandWiredPath(@"etc/wired.startup")]]; … … 488 488 [_config setString:[_controlPortTextField stringValue] forKey:@"port"]; 489 489 [_config setString:[_descriptionTextField stringValue] forKey:@"description"]; 490 [_config setBool:([_use RendezvousButton state] == NSOnState) forKey:@"zeroconf"];490 [_config setBool:([_useZeroconfButton state] == NSOnState) forKey:@"zeroconf"]; 491 491 492 492 [_config setString:[_totalDownloadsTextField stringValue] forKey:@"total downloads"];
