[JEDI.NET-commits] main/run Jedi.Timers.Schedules.pas,1.1,1.2
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-06-22 18:30:41
|
Update of /cvsroot/jedidotnet/main/run In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31631/main/run Modified Files: Jedi.Timers.Schedules.pas Log Message: Bug fix: FixedIntervalSchedule would set FStart to the end date in the (hypothethical) case were the stop parameter would be specified in ticks (paramsInTicks parameter would contain ParamsInTicks.Stop flag). Index: Jedi.Timers.Schedules.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.Timers.Schedules.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Jedi.Timers.Schedules.pas 16 Jun 2005 13:13:55 -0000 1.1 --- Jedi.Timers.Schedules.pas 22 Jun 2005 18:30:32 -0000 1.2 *************** *** 617,621 **** end else ! FStart := DateTime.Create(stop); if paramsInTicks and ParamInTicks.Interval = ParamInTicks.None then --- 617,621 ---- end else ! FStop := DateTime.Create(stop); if paramsInTicks and ParamInTicks.Interval = ParamInTicks.None then |