Changeset 554 for trunk/Cocoa/Pester
- Timestamp:
- 07/18/09 05:59:43 (15 years ago)
- Location:
- trunk/Cocoa/Pester/Source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cocoa/Pester/Source/PSMovieAlert.m
r544 r554 98 98 - (void)triggerForAlarm:(PSAlarm *)alarm; 99 99 { 100 [PSMovieAlertController controllerWithAlarm: alarm movieAlert: self];100 [PSMovieAlertController newControllerWithAlarm: alarm movieAlert: self]; 101 101 } 102 102 -
trunk/Cocoa/Pester/Source/PSMovieAlertController.h
r543 r554 22 22 } 23 23 24 + (PSMovieAlertController *)controllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert; 24 // note: retains itself until the alert completes 25 + (PSMovieAlertController *)newControllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert; 25 26 26 27 - (id)initWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert; -
trunk/Cocoa/Pester/Source/PSMovieAlertController.m
r543 r554 16 16 @implementation PSMovieAlertController 17 17 18 + (PSMovieAlertController *) controllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert;18 + (PSMovieAlertController *)newControllerWithAlarm:(PSAlarm *)anAlarm movieAlert:(PSMovieAlert *)anAlert; 19 19 { 20 // retained until the alert completes 20 21 return [[self alloc] initWithAlarm: anAlarm movieAlert: anAlert]; 21 22 }
Note:
See TracChangeset
for help on using the changeset viewer.