mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
* Merging revisions r48716 from trunk:
------------------------------------------------------------------------ r48716 | michael | 2021-02-19 09:12:46 +0100 (Fri, 19 Feb 2021) | 1 line * Month constants appeared in Delphi ------------------------------------------------------------------------ git-svn-id: branches/fixes_3_2@48935 -
This commit is contained in:
parent
771b27632f
commit
e2980ac39b
@ -44,6 +44,19 @@ const
|
||||
DaySaturday = 6;
|
||||
DaySunday = 7;
|
||||
|
||||
MonthJanuary = 1;
|
||||
MonthFebruary = 2;
|
||||
MonthMarch = 3;
|
||||
MonthApril = 4;
|
||||
MonthMay = 5;
|
||||
MonthJune = 6;
|
||||
MonthJuly = 7;
|
||||
MonthAugust = 8;
|
||||
MonthSeptember = 9;
|
||||
MonthOctober = 10;
|
||||
MonthNovember = 11;
|
||||
MonthDecember = 12;
|
||||
|
||||
// Fraction of a day
|
||||
OneHour = TDateTime(1)/HoursPerDay;
|
||||
OneMinute = TDateTime(1)/MinsPerDay;
|
||||
|
Loading…
Reference in New Issue
Block a user