lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master 484a872 2/3: Improve commentary


From: Greg Chicares
Subject: [lmi-commits] [lmi] master 484a872 2/3: Improve commentary
Date: Wed, 12 Jun 2019 19:32:07 -0400 (EDT)

branch: master
commit 484a872ce21755a00cec23d309a2dc5d08e14df4
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Improve commentary
    
    A set of lines that is contiguous (unbroken by any blank line) is likely
    to be parsed as a unit. Thus:
    
      // Higher-level comment #1, applicable to a larger section.
    
      some code;
      something else;
    
      // Comment #2, applicable only up to the next blank line.
      some statement;
      another statement;
    
      something completely different; // #1 may apply; #2 does not.
---
 pdf_command_wx.cpp | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/pdf_command_wx.cpp b/pdf_command_wx.cpp
index f1a812c..25e40f1 100644
--- a/pdf_command_wx.cpp
+++ b/pdf_command_wx.cpp
@@ -917,6 +917,8 @@ class pdf_illustration : protected html_interpolator, 
protected pdf_writer_wx
 
         auto const& invar = ledger_.GetLedgerInvariant();
 
+        // PDF !! Abbreviations of different lengths are used in some
+        // derived classes; can uniform lengths be used everywhere?
         add_abbreviated_variable("CorpName", 60);
         add_abbreviated_variable("Insured1", 30);
 
@@ -2228,8 +2230,8 @@ class pdf_illustration_naic : public pdf_illustration
         auto const& policy_name = invar.PolicyLegalName;
         auto const& state_of_jurisdiction = invar.StateOfJurisdiction;
 
-        // Define variables specific to this illustration which doesn't use the
-        // standard 60/30 lengths for whatever reason.
+        // Define variables specific to this illustration.
+
         add_abbreviated_variable("CorpName", 50);
         add_abbreviated_variable("Insured1", 50);
 
@@ -2859,6 +2861,7 @@ class pdf_illustration_finra : public pdf_illustration
         auto const& invar = ledger.GetLedgerInvariant();
 
         // Define variables specific to this illustration.
+
         auto const& state_of_jurisdiction = invar.StateOfJurisdiction;
 
         add_variable
@@ -2956,6 +2959,7 @@ class pdf_illustration_reg_d_group : public 
pdf_illustration
         :pdf_illustration{ledger, pdf_out_file}
     {
         // Define variables specific to this illustration.
+
         auto const& invar = ledger.GetLedgerInvariant();
 
         add_variable
@@ -3243,6 +3247,7 @@ class pdf_illustration_reg_d_indiv : public 
pdf_illustration
         auto const& invar = ledger.GetLedgerInvariant();
 
         // Define variables specific to this illustration.
+
         add_abbreviated_variable("CorpName", 140);
         add_abbreviated_variable("Insured1", 140);
 



reply via email to

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