You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ad...@apache.org on 2006/08/08 17:40:13 UTC

svn commit: r429694 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java

Author: adelmelle
Date: Tue Aug  8 08:40:12 2006
New Revision: 429694

URL: http://svn.apache.org/viewvc?rev=429694&view=rev
Log:
Small update in the table-layout code

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java?rev=429694&r1=429693&r2=429694&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java Tue Aug  8 08:40:12 2006
@@ -76,6 +76,8 @@
 
     private int startXOffset;
     private int usedBPD;
+    
+    private TableStepper stepper = new TableStepper(this);
         
     /**
      * Main constructor
@@ -577,8 +579,7 @@
                 log.debug("  height=" + rowHeights[i] + " explicit=" + explicitRowHeights[i]);
             }
         }
-        TableStepper stepper = new TableStepper(this);
-        LinkedList returnedList = stepper.getCombinedKnuthElementsForRowGroup(
+        LinkedList returnedList = this.stepper.getCombinedKnuthElementsForRowGroup(
                 context, rowGroup, maxColumnCount, bodyType);
         if (returnedList != null) {
             returnList.addAll(returnedList);



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org