[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/AccountProviding Int
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-04-08 21:49:18
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/AccountProviding In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7215/b4_Business/a1_Financial/a2_Accounting/AccountProviding Modified Files: InteractiveBrokerAccountProvider.cs Log Message: Modified the way OutOfRangeException is constructed Index: InteractiveBrokerAccountProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/AccountProviding/InteractiveBrokerAccountProvider.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InteractiveBrokerAccountProvider.cs 12 Mar 2008 21:54:42 -0000 1.1 --- InteractiveBrokerAccountProvider.cs 8 Apr 2008 21:49:14 -0000 1.2 *************** *** 53,57 **** if( slippageFixedPercentage < 0.0 || slippageFixedPercentage > 100.0 ) ! throw new OutOfRangeException(slippageFixedPercentage, 0.0, 100.0); this.slippageFixedPercentage = slippageFixedPercentage; --- 53,57 ---- if( slippageFixedPercentage < 0.0 || slippageFixedPercentage > 100.0 ) ! throw new OutOfRangeException("slippageFixedPercentage", 0.0, 100.0); this.slippageFixedPercentage = slippageFixedPercentage; |