Changeset 913 for trunk/Update Checker Sources
- Timestamp:
- 07/06/08 16:40:47 (2 months ago)
- Files:
-
- trunk/Update Checker Sources/NSString+extras.m (modified) (1 diff)
- trunk/Update Checker Sources/UpdateCheckerAppDelegate.m (modified) (2 diffs)
- trunk/Update Checker Sources/main.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Update Checker Sources/NSString+extras.m
r269 r913 81 81 82 82 [componentsCopy removeObjectsInRange: NSMakeRange (ix, len - ix)]; 83 [componentsCopy autorelease]; 83 84 84 85 return [componentsCopy componentsJoinedByString: @" "]; trunk/Update Checker Sources/UpdateCheckerAppDelegate.m
r624 r913 91 91 [[NSApplication sharedApplication] terminate:self]; 92 92 } 93 94 [appcast release]; 93 95 } 94 96 … … 98 100 if(manualRun) 99 101 [self showUpdateErrorAlertWithInfo:SULocalizedString(@"An error occurred while trying to load Perian's version info. Please try again later.", nil)]; 102 [appcast release]; 100 103 [[NSApplication sharedApplication] terminate:self]; 101 104 } trunk/Update Checker Sources/main.m
r834 r913 16 16 { 17 17 int fp = open(lockPath, O_CREAT | O_EXCL); 18 if(fp = -1)18 if(fp == -1) 19 19 { 20 20 struct stat lockfile; … … 34 34 int ret = NSApplicationMain(argc, (const char **) argv); 35 35 36 close(fp); 36 37 unlink(lockPath); 37 38
