[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting Account.cs, 1.21, 1.
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-08-18 21:13:47
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12665/b4_Business/a1_Financial/a2_Accounting Modified Files: Account.cs Log Message: - the code has been cleaned up to avoid warnings - standard indentation has been applied Index: Account.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/Account.cs,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Account.cs 26 Nov 2005 23:49:21 -0000 1.21 --- Account.cs 18 Aug 2008 21:13:14 -0000 1.22 *************** *** 182,189 **** //cashAmount = cashAmount + moneyAmount; } ! catch (Exception exception) { ! exception = exception; // to avoid warning message ! /// TO DO!!! } } --- 182,188 ---- //cashAmount = cashAmount + moneyAmount; } ! catch (Exception ex) { ! string forBreakpoint = ex.Message; forBreakpoint = forBreakpoint + ""; } } |