diff options
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/TableRow.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/TableRow.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableRow.java b/src/java/org/apache/fop/fo/flow/TableRow.java index 467fe02b2..7bb3eda5d 100644 --- a/src/java/org/apache/fop/fo/flow/TableRow.java +++ b/src/java/org/apache/fop/fo/flow/TableRow.java @@ -68,7 +68,7 @@ public class TableRow extends FObj { protected void addProperties(Attributes attlist) throws FOPException { super.addProperties(attlist); setupID(); - getDocument().getFOInputHandler().startRow(this); + getFOInputHandler().startRow(this); } /** @@ -145,7 +145,7 @@ public class TableRow extends FObj { } protected void end() { - getDocument().getFOInputHandler().endRow(this); + getFOInputHandler().endRow(this); } public String getName() { |