Ignore:
Timestamp:
03/02/03 19:53:27 (21 years ago)
Author:
Nicholas Riley
Message:

PSAlarm.m: Fixed logic bug with invalid date/time combination. Added
repeating indicator to -description. Fixed plist archiving to
properly handle repeating alarms which expire while the app is quit
(1).

PSAlarmAlertController.m: Restore some debugging.

PSPowerManager.m: Properly return pmuReference (fixes compiler
warning, and 2).

Read Me.rtfd: Fixed some wording.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/PSAlarms.m

    r64 r105  
    215215}
    216216
     217#pragma mark printing
     218
     219- (NSString *)description;
     220{
     221    return [NSString stringWithFormat: @"%@ pending %@\n%@\n",
     222        [super description], alarms,
     223        [expiredAlarms count] > 0 ? [NSString stringWithFormat: @"expired %@\n", expiredAlarms]
     224                                  : @""];
     225}
     226
    217227#pragma mark property list serialization (Pester 1.1)
    218228
     
    243253    [plPendingAlarms release];
    244254    [plExpiredAlarms release];
    245    
     255
    246256    return plAllAlarms;
    247257}
Note: See TracChangeset for help on using the changeset viewer.