"Benjamin Arai" <[EMAIL PROTECTED]> writes:

> +  if (fAbbrev)
> +    if (iFirstDay == 0)
> +      localeValue = LOCALE_SABBREVDAYNAME1 + ((iWeekday + iFirstDay + 5) % 
> 7);
> +    else
> +      localeValue = LOCALE_SABBREVDAYNAME1 + ((iWeekday + iFirstDay + 4) % 
> 7);
> +  else
> +    if (iFirstDay == 0)
> +      localeValue = LOCALE_SDAYNAME1 + ((iWeekday + iFirstDay + 5) % 7);
> +    else
> +      localeValue = LOCALE_SDAYNAME1 + ((iWeekday + iFirstDay + 4) % 7);

iFirstDay == 0 is supposed to mean system default, but that is
locale-dependent, you can't simply hardcode it.

-- 
Alexandre Julliard
[EMAIL PROTECTED]


Reply via email to