[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting ReportTab
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-28 16:06:23
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting
In directory sc8-pr-cvs1:/tmp/cvs-serv9074/b4_Business/a1_Financial/a2_Accounting/h5_Reporting
Modified Files:
ReportTable.cs
Log Message:
The last inserted constructor has been
fixed: the private variable
dataTable now is constructed
Index: ReportTable.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/ReportTable.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ReportTable.cs 8 Nov 2003 20:55:54 -0000 1.2
--- ReportTable.cs 28 Nov 2003 16:06:20 -0000 1.3
***************
*** 52,55 ****
--- 52,56 ----
{
this.name = name;
+ this.dataTable = new DataTable( name );
}
}
|