From fb920bc1e7fdf5b4b826403a5aa543191fd323b2 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Wed, 27 Nov 2002 03:02:01 +0000 Subject: [PATCH] Generalised getEndElement() calls. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195633 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/flow/FoTableBody.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/apache/fop/fo/flow/FoTableBody.java b/src/org/apache/fop/fo/flow/FoTableBody.java index f8225389b..a3cbbd38b 100644 --- a/src/org/apache/fop/fo/flow/FoTableBody.java +++ b/src/org/apache/fop/fo/flow/FoTableBody.java @@ -124,7 +124,7 @@ public class FoTableBody extends FONode { != null) { new FoMarker(getFOTree(), this, ev, stateFlags); numMarkers++; - xmlevents.getEndElement(FObjectNames.MARKER); + xmlevents.getEndElement(ev); } // Look for one or more table-rows @@ -134,7 +134,7 @@ public class FoTableBody extends FONode { != null) { new FoTableRow(getFOTree(), this, ev, stateFlags); numRows++; - xmlevents.getEndElement(FObjectNames.TABLE_ROW); + xmlevents.getEndElement(ev); } if (numRows > 0) { @@ -147,7 +147,7 @@ public class FoTableBody extends FONode { != null) { new FoTableCell(getFOTree(), this, ev, stateFlags); numCells++; - xmlevents.getEndElement(FObjectNames.TABLE_CELL); + xmlevents.getEndElement(ev); } if (numCells == 0) throw new FOPException -- 2.39.5