You've already forked lazarus-ccr
tvplanit: Support recurring events in GanttView.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8543 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -63,6 +63,7 @@ const
|
||||
|
||||
NO_DATE = 9999999;
|
||||
FOREVER_DATE = 999999;
|
||||
|
||||
SecondsInDay = 86400; { Number of seconds in a day }
|
||||
SecondsInHour = 3600; { Number of seconds in an hour }
|
||||
SecondsInMinute = 60; { Number of seconds in a minute }
|
||||
@ -72,6 +73,8 @@ const
|
||||
OneSecond = 1.0 / SecondsInDay;
|
||||
OneMinute = 1.0 / MinutesInDay;
|
||||
OneHour = 1.0 / HoursInDay;
|
||||
TIME_EPS = 0.1 * OneSecond; // Epsilon for comparing times
|
||||
|
||||
MaxDateLen = 40; { maximum length of date picture strings }
|
||||
MaxMonthName = 15; { maximum length for month names }
|
||||
MaxDayName = 15; { maximum length for day names }
|
||||
|
Reference in New Issue
Block a user