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 ph...@apache.org on 2005/09/20 21:41:41 UTC

svn commit: r290545 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java

Author: pherweg
Date: Tue Sep 20 12:41:37 2005
New Revision: 290545

URL: http://svn.apache.org/viewcvs?rev=290545&view=rev
Log:
added clause for TableBody in invokeDeferredEvent

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java?rev=290545&r1=290544&r2=290545&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java Tue Sep 20 12:41:37 2005
@@ -1247,6 +1247,12 @@
             } 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);



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