Bug 1225696 - Part 3. Revert the order of kDateFormat. r=jorgk

MozReview-Commit-ID: A1gWYkHi28v
This commit is contained in:
Makoto Kato 2017-02-24 20:33:53 +09:00
Родитель da510dcb85
Коммит 797b5df988
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -9,13 +9,14 @@ typedef long nsDateFormatSelector;
%{ C++
enum
{
// Do not change the order of the values below (see bug 1225696).
kDateFormatNone = 0, // do not include the date in the format string
kDateFormatLong, // provides the long date format for the given locale
kDateFormatShort, // provides the short date format for the given locale
kDateFormatYearMonth, // formats using only the year and month
kDateFormatYearMonth, // formats using only the year and month
kDateFormatWeekday, // week day (e.g. Mon, Tue)
kDateFormatYearMonthLong, // long version of kDateFormatYearMonth
kDateFormatMonthLong, // long format of month name only
kDateFormatWeekday // week day (e.g. Mon, Tue)
kDateFormatMonthLong // long format of month name only
};
%}