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/PSSpeechAlert.m

    r364 r366  
    6060{
    6161    NSMutableAttributedString *string = [[@"Speak message with voice " small] mutableCopy];
    62     [string appendAttributedString: [voice underlined]];
     62    NSString *voiceName = [[NSSpeechSynthesizer attributesForVoice: voice] objectForKey: NSVoiceName];
     63    if (voiceName == nil)
     64        voiceName = voice;
     65    [string appendAttributedString: [voiceName underlined]];
    6366    return [string autorelease];
    6467}
Note: See TracChangeset for help on using the changeset viewer.