[Quantproject-developers] QuantProject/b4_Business/a05_Timing Timer.cs, 1.2, 1.3
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-11-24 21:06:58
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27874/b4_Business/a05_Timing Modified Files: Timer.cs Log Message: the property IsDone's meaning has been slightly changed (now the timer is considered to be done when the script stops it, also) Index: Timer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing/Timer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Timer.cs 20 Nov 2008 20:44:14 -0000 1.2 --- Timer.cs 24 Nov 2008 21:06:49 -0000 1.3 *************** *** 49,53 **** public bool IsDone { ! get { return this.isDone(); } } #endregion IsDone --- 49,53 ---- public bool IsDone { ! get { return ( this.hasTheTimerBeenStopped || this.isDone() ); } } #endregion IsDone |