[Quantproject-developers] QuantProject/b7_Scripts/CallingReportsForRunScripts ShowReportFromFile.c
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:17:00
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/CallingReportsForRunScripts In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15503 Modified Files: ShowReportFromFile.cs Log Message: The new revision moves toward an intraday enabled framework. EndOfDayDate time has been removed, DateTime is used now. The code has been changed accordingly. Index: ShowReportFromFile.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/CallingReportsForRunScripts/ShowReportFromFile.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ShowReportFromFile.cs 10 Jun 2005 18:45:44 -0000 1.5 --- ShowReportFromFile.cs 29 Sep 2008 21:16:45 -0000 1.6 *************** *** 90,96 **** foreach(Object key in transactions.Keys) { ! foreach(EndOfDayTransaction transaction in (ArrayList)transactions[key]) { ! account.Add(transaction); } } --- 90,96 ---- foreach(Object key in transactions.Keys) { ! foreach(TimedTransaction timedTransaction in (ArrayList)transactions[key]) { ! account.Add(timedTransaction); } } |