Changeset 4611
- Timestamp:
- 02/13/07 23:29:55 (2 years ago)
- Files:
-
- 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/WCDashboardController.m (modified) (2 diffs)
- WiredServer/trunk/WCSettings.h (modified) (2 diffs)
- WiredServer/trunk/WCSettings.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredServer/trunk/PreferencePane/English.lproj/Wired.nib/info.nib
r4179 r4611 12 12 </array> 13 13 <key>IBSystem Version</key> 14 <string>8 I127</string>14 <string>8L2127</string> 15 15 </dict> 16 16 </plist> WiredServer/trunk/WCDashboardController.m
r4496 r4611 196 196 case WCLogMethodFile: 197 197 [arguments addObject:@"-L"]; 198 [arguments addObject:[ WCSettings objectForKey:WCLogFile]];198 [arguments addObject:[[WCSettings objectForKey:WCLogFile] stringByExpandingTildeInPath]]; 199 199 200 200 if([WCSettings boolForKey:WCLimitLogFile]) { … … 226 226 NSUInteger i, argc; 227 227 int status; 228 228 229 229 argc = [arguments count]; 230 230 argv = (char **) malloc(sizeof(char *) * (argc + 1)); WiredServer/trunk/WCSettings.h
r3950 r4611 27 27 */ 28 28 29 NSString * WCExpandWiredPath(NSString *); 30 31 29 32 @interface WCSettings : WISettings 30 33 … … 47 50 #define WCUpdateInterval @"WCUpdateInterval" 48 51 49 50 NSString * WCExpandWiredPath(NSString *);51 52 52 @end WiredServer/trunk/WCSettings.m
r3950 r4611 29 29 #import "WCSettings.h" 30 30 31 @implementation WCSettings32 33 31 NSString * WCExpandWiredPath(NSString *path) { 32 path = [path stringByExpandingTildeInPath]; 33 34 34 if([path hasPrefix:@"/"]) 35 35 return path; … … 39 39 40 40 41 42 @implementation WCSettings 41 43 42 44 + (NSDictionary *)defaults {
