[Quantproject-developers] QuantProject/b4_Business/a05_Timing HistoricalEndOfDayTimer.cs,1.2,1.3
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-12-20 00:29:14
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31639/b4_Business/a05_Timing Modified Files: HistoricalEndOfDayTimer.cs Log Message: Bug fixed: this.currentTime is now assigned with a copy of this.startDateTime Index: HistoricalEndOfDayTimer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing/HistoricalEndOfDayTimer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HistoricalEndOfDayTimer.cs 13 Dec 2004 01:47:27 -0000 1.2 --- HistoricalEndOfDayTimer.cs 20 Dec 2004 00:29:05 -0000 1.3 *************** *** 71,75 **** { this.isActive = true; ! this.currentTime = this.startDateTime; while ( this.isActive ) { --- 71,75 ---- { this.isActive = true; ! this.currentTime = this.startDateTime.Copy(); while ( this.isActive ) { |