[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Statisti
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2009-08-30 15:41:53
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/StatisticsSummaryRows In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21738/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/StatisticsSummaryRows Modified Files: AverageReturnOnDayWithOpenPositions.cs Log Message: Fixed minor bug Index: AverageReturnOnDayWithOpenPositions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/StatisticsSummaryRows/AverageReturnOnDayWithOpenPositions.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AverageReturnOnDayWithOpenPositions.cs 29 Sep 2008 21:13:46 -0000 1.2 --- AverageReturnOnDayWithOpenPositions.cs 30 Aug 2009 15:41:40 -0000 1.3 *************** *** 113,118 **** } } ! this.rowValue = this.getRowValue( totalNumberOfDaysWithOpenPositions , sumOfReturnsOnDaysWithOpenPositions); } } --- 113,121 ---- } } ! this.rowValue= "-"; ! try{ ! this.rowValue = this.getRowValue( totalNumberOfDaysWithOpenPositions , sumOfReturnsOnDaysWithOpenPositions); + }catch{}; } } |