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 2006/01/15 18:51:23 UTC

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

Author: pherweg
Date: Sun Jan 15 09:51:19 2006
New Revision: 369239

URL: http://svn.apache.org/viewcvs?rev=369239&view=rev
Log:
RTF: call startListBody and endListBody

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=369239&r1=369238&r2=369239&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 Sun Jan 15 09:51:19 2006
@@ -46,6 +46,7 @@
 import org.apache.fop.fo.flow.Leader;
 import org.apache.fop.fo.flow.ListBlock;
 import org.apache.fop.fo.flow.ListItem;
+import org.apache.fop.fo.flow.ListItemBody;
 import org.apache.fop.fo.flow.ListItemLabel;
 import org.apache.fop.fo.flow.PageNumber;
 import org.apache.fop.fo.flow.Table;
@@ -1298,6 +1299,12 @@
                 startList( (ListBlock) foNode);
             } else {
                 endList( (ListBlock) foNode);
+            }
+        } else if (foNode instanceof ListItemBody) {
+            if (bStart) {
+                startListBody();
+            } else {
+                endListBody();
             }
         } else if (foNode instanceof ListItem) {
             if (bStart) {



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