bug-gnubg
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-gnubg] Changelog 1.740: typo - consistency


From: Nardy Pillards
Subject: Re: [Bug-gnubg] Changelog 1.740: typo - consistency
Date: Wed, 16 Oct 2002 20:20:40 +0200

>
> I've merged in your changes. Let me know if it works :-)
>
> Jørn

Yep, it works :-)

One last change (maybe):

set priority high => set priority highest
set priority realtime => set priority timecritical

so:
gnubg.c, line 999 e.a. :
change from:
#ifdef WIN32
}, acSetPriority[] = {
  { "idle", CommandSetPriorityIdle,
    N_("Set priority to IDLE_PRIORITY_CLASS"), NULL, NULL },
  { "belownormal", CommandSetPriorityBelowNormal,
    N_("Set priority to BELOW_NORMAL_PRIORITY_CLASS"), NULL, NULL },
  { "normal", CommandSetPriorityNormal,
    N_("Set priority to NORMAL_PRIORITY_CLASS"), NULL, NULL },
  { "abovenormal", CommandSetPriorityAboveNormal,
    N_("Set priority to ABOVE_NORMAL_PRIORITY_CLASS"), NULL, NULL },
  { "high", CommandSetPriorityHighest,
    N_("Set priority to HIGHEST_PRIORITY_CLASS"), NULL, NULL },
  { "realtime", CommandSetPriorityTimeCritical,
    N_("Set priority to TIME_CRITICAL_PRIORITY_CLASS"), NULL, NULL },
  { NULL, NULL, NULL, NULL, NULL }
#endif /* WIN32 */

CHANGE TO:

#ifdef WIN32
}, acSetPriority[] = {
  { "idle", CommandSetPriorityIdle,
    N_("Set priority to IDLE_PRIORITY_CLASS"), NULL, NULL },
  { "belownormal", CommandSetPriorityBelowNormal,
    N_("Set priority to BELOW_NORMAL_PRIORITY_CLASS"), NULL, NULL },
  { "normal", CommandSetPriorityNormal,
    N_("Set priority to NORMAL_PRIORITY_CLASS"), NULL, NULL },
  { "abovenormal", CommandSetPriorityAboveNormal,
    N_("Set priority to ABOVE_NORMAL_PRIORITY_CLASS"), NULL, NULL },
  { "highest", CommandSetPriorityHighest,
    N_("Set priority to HIGHEST_PRIORITY_CLASS"), NULL, NULL },
  { "timecritical", CommandSetPriorityTimeCritical,
    N_("Set priority to TIME_CRITICAL_PRIORITY_CLASS"), NULL, NULL },
  { NULL, NULL, NULL, NULL, NULL }
#endif /* WIN32 */

Nardy





reply via email to

[Prev in Thread] Current Thread [Next in Thread]