[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryR
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2006-06-08 18:48:59
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25453/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows Modified Files: DoubleSummaryRow.cs Log Message: a format string for 6 decimals has been added (a general method should be implemented; in the to do list) Index: DoubleSummaryRow.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/DoubleSummaryRow.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DoubleSummaryRow.cs 19 Jun 2005 15:09:28 -0000 1.1 --- DoubleSummaryRow.cs 8 Jun 2006 18:48:50 -0000 1.2 *************** *** 43,46 **** --- 43,49 ---- this.format = ConstantsProvider.FormatWithTwoDecimals; break; + case 6: + this.format = ConstantsProvider.FormatWithSixDecimals; + break; } } |