]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
added clause for TableBody in invokeDeferredEvent
authorPeter Herweg <pherweg@apache.org>
Tue, 20 Sep 2005 19:41:37 +0000 (19:41 +0000)
committerPeter Herweg <pherweg@apache.org>
Tue, 20 Sep 2005 19:41:37 +0000 (19:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@290545 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/rtf/RTFHandler.java

index e0366dd34027437555d91437fc52186a28f36eaf..ce0e476cf962598eaeb1f83c28892700adfe54e1 100644 (file)
@@ -1247,6 +1247,12 @@ public class RTFHandler extends FOEventHandler {
             } else {
                 endTable( (Table) foNode);
             }
+        } else if (foNode instanceof TableBody) {
+            if (bStart) {
+                startBody( (TableBody) foNode);
+            } else {
+                endBody( (TableBody) foNode);
+            }
         } else if (foNode instanceof TableColumn) {
             if (bStart) {
                 startColumn( (TableColumn) foNode);