>From 1f79482c4d1558060b30e563918eaae9b7506cc6 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 20 Sep 2015 14:22:24 +0200 Subject: [PATCH 2/3] Correct the maximal expected value for the "Face Amount" column This column doesn't show cents, so remove the fractional part. --- group_quote_pdf_gen_wx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group_quote_pdf_gen_wx.cpp b/group_quote_pdf_gen_wx.cpp index 24cf40e..e427c6b 100644 --- a/group_quote_pdf_gen_wx.cpp +++ b/group_quote_pdf_gen_wx.cpp @@ -206,7 +206,7 @@ struct column_definition ,{"Issue Age" , "999" } ,{"Date of Birth" , "9999-99-99" } ,{"Income" , "$99,999,999" } - ,{"Face Amount" , "$999,999,999.00" } + ,{"Face Amount" , "$999,999,999" } // All the subsequent columns use dynamically determined "premium mode" in // their title, so their labels are actually format strings. ,{"%s\nPremium" , "$9,999,999.00" } -- 2.5.1