lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [5346] Fix defect introduced 20050114T1947Z


From: Greg Chicares
Subject: [lmi-commits] [5346] Fix defect introduced 20050114T1947Z
Date: Sat, 07 Jan 2012 13:26:23 +0000

Revision: 5346
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=5346
Author:   chicares
Date:     2012-01-07 13:26:22 +0000 (Sat, 07 Jan 2012)
Log Message:
-----------
Fix defect introduced 20050114T1947Z

Modified Paths:
--------------
    lmi/trunk/ChangeLog
    lmi/trunk/ihs_irc7702.cpp

Modified: lmi/trunk/ChangeLog
===================================================================
--- lmi/trunk/ChangeLog 2012-01-06 09:17:50 UTC (rev 5345)
+++ lmi/trunk/ChangeLog 2012-01-07 13:26:22 UTC (rev 5346)
@@ -29338,3 +29338,21 @@
 Use textctrls rather than spinctrls for doubles (VS). See:
   http://lists.nongnu.org/archive/html/lmi/2011-12/msg00015.html
 
+20120106T0751Z <address@hidden> [597]
+
+  mvc_controller.cpp
+Improve layout.
+
+20120106T0917Z <address@hidden> [597]
+
+  gpt_specamt.cpp
+  ihs_irc7702.cpp
+  ihs_irc7702.hpp
+Refactor to eliminate an ugly workaround.
+
+20120107T1326Z <address@hidden> [597]
+
+  ihs_irc7702.cpp
+Fix defect introduced 20050114T1947Z, from an original file predating
+the lmi epoch, as noted 20111119T2005Z and now discussed inline.
+

Modified: lmi/trunk/ihs_irc7702.cpp
===================================================================
--- lmi/trunk/ihs_irc7702.cpp   2012-01-06 09:17:50 UTC (rev 5345)
+++ lmi/trunk/ihs_irc7702.cpp   2012-01-07 13:26:22 UTC (rev 5346)
@@ -721,7 +721,13 @@
     Initialize7702(a_SpecAmt);
     PresentBftAmt       = a_BftAmt;
     PriorBftAmt         = PresentBftAmt;
-    LeastBftAmtEver     = PresentBftAmt; // was set to PresentSpecAmt by 
Initialize7702(a_SpecAmt); what if DB != SA?
+// This:
+//  LeastBftAmtEver     = PresentBftAmt;
+// would appear correct: ...BftAmt assigned from ...BftAmt. However,
+// as pointed out above, 'EndowmentBenefit' would be a better name,
+// so initializing it to PresentSpecAmt as elsewhere is actually
+// correct.
+    LeastBftAmtEver     = PresentSpecAmt;
     TargetPremium       = a_TargetPremium;
     PresentGLP = CalculateGLP
         (InforceDuration    // TODO ?? a_Duration...what if inforce?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]