Changeset 3199

Show
Ignore:
Timestamp:
08/16/05 19:14:49 (3 years ago)
Author:
morris
Message:

Rename button to Bonjour

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/classes.nib

    r3011 r3199  
    113113                "_uploadSpeedTextField" = NSTextField;  
    114114                "_urlTextField" = NSTextField;  
    115                 "_useRendezvousButton" = NSButton;  
     115                "_useZeroconfButton" = NSButton;  
    116116                "_userPopUpButton" = NSPopUpButton;  
    117117            };  
  • WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/info.nib

    r2987 r3199  
    1212        </array> 
    1313        <key>IBSystem Version</key> 
    14         <string>8B15</string> 
     14        <string>8C46</string> 
    1515</dict> 
    1616</plist> 
  • WiredServer/trunk/PreferencePane/prefix.pch

    r3191 r3199  
    4848#import <openssl/rsa.h> 
    4949 
    50 // --- Common 
     50// --- Macros 
     51#define NSLS            NSLocalizedString 
     52#define NSSWF           NSString stringWithFormat 
     53 
    5154#define WPLS(string, comment) \ 
    5255        NSLocalizedStringFromTableInBundle(string, NULL, \ 
    5356        [NSBundle bundleWithIdentifier:@"com.zanka.WiredServer"], \ 
    5457        comment) 
    55  
    56 #define WCLS    WPLS 
     58#define WCLS            WPLS 
  • WiredServer/trunk/WCConfigController.h

    r3011 r3199  
    4242        IBOutlet NSButton                               *_selectBannerButton; 
    4343        IBOutlet NSButton                               *_clearBannerButton; 
    44         IBOutlet NSButton                               *_useRendezvousButton; 
     44        IBOutlet NSButton                               *_useZeroconfButton; 
    4545 
    4646        IBOutlet NSTextField                    *_totalDownloadsTextField; 
  • WiredServer/trunk/WCConfigController.m

    r3191 r3199  
    285285        [_selectBannerButton setEnabled:enabled]; 
    286286        [_clearBannerButton setEnabled:enabled]; 
    287         [_useRendezvousButton setEnabled:enabled]; 
     287        [_useZeroconfButton setEnabled:enabled]; 
    288288        [_totalDownloadsTextField setEnabled:enabled]; 
    289289        [_clientDownloadsTextField setEnabled:enabled]; 
     
    414414        [_descriptionTextField setStringValue:[_config stringForKey:@"description"]]; 
    415415        [_bannerImageView setImage:[_config imageForKey:@"banner"]]; 
    416         [_useRendezvousButton setState:[_config boolForKey:@"zeroconf"]]; 
     416        [_useZeroconfButton setState:[_config boolForKey:@"zeroconf"]]; 
    417417        [_launchAtBootButton setState:[[NSFileManager defaultManager] fileExistsAtPath: 
    418418                WCExpandWiredPath(@"etc/wired.startup")]]; 
     
    488488        [_config setString:[_controlPortTextField stringValue] forKey:@"port"]; 
    489489        [_config setString:[_descriptionTextField stringValue] forKey:@"description"]; 
    490         [_config setBool:([_useRendezvousButton state] == NSOnState) forKey:@"zeroconf"]; 
     490        [_config setBool:([_useZeroconfButton state] == NSOnState) forKey:@"zeroconf"]; 
    491491         
    492492        [_config setString:[_totalDownloadsTextField stringValue] forKey:@"total downloads"];