Ignore:
Timestamp:
11/28/07 17:27:26 (16 years ago)
Author:
Nicholas Riley
Message:

Info-Pester.plist: Updated for build 23.

NJRHotKey.m: Cosmetic cleanup.

PSAlarm.[hm]: Fix -[PSAlarm time] to work properly, though it no
longer has any clients.

PSSnoozeUntilController.m: Fix snooze until time being off by an hour
as displayed, or if edited, in some time zones.

PSSpeechAlert.m: Display the voice name instead of its identifier in
the description.

Pester.xcodeproj: Misc.

release-notes.html: Updated for build 23.

File:
1 edited

Legend:

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

    r102 r366  
    2929        [PSTimeDateEditor setUpTimeField: timeOfDay dateField: timeDate completions: timeDateCompletions];
    3030        if ([alarm isValid]) {
    31             [timeOfDay setObjectValue: [alarm time]];
     31            // [alarm time] works fine for display, but we can't use it overall until we've moved off NSCalendarDate
     32            [timeOfDay setObjectValue: [alarm date]];
    3233            [timeDate setObjectValue: [alarm date]];
    3334        }
Note: See TracChangeset for help on using the changeset viewer.