diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2005-11-08 22:34:30 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2005-11-08 22:34:30 +0000 |
commit | 583dbf49ae518a8d267b97daacb09a5472a29134 (patch) | |
tree | c97808a3d9ca5c16ea776804c5e539c7a0e20522 /src/java/org/apache/fop/layoutmgr/table | |
parent | 479ed22a282ea33ad70bdf6e867901a7e7aeb3b4 (diff) | |
download | xmlgraphics-fop-583dbf49ae518a8d267b97daacb09a5472a29134.tar.gz xmlgraphics-fop-583dbf49ae518a8d267b97daacb09a5472a29134.zip |
Fix for bug #37415
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@331912 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/table')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/table/TableCellLayoutManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/table/TableCellLayoutManager.java b/src/java/org/apache/fop/layoutmgr/table/TableCellLayoutManager.java index 407088522..de3f4d52f 100644 --- a/src/java/org/apache/fop/layoutmgr/table/TableCellLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/table/TableCellLayoutManager.java @@ -203,7 +203,7 @@ public class TableCellLayoutManager extends BlockStackingLayoutManager //contentList.add(new KnuthPenalty(0, // KnuthElement.INFINITE, false, // new Position(this), false)); - } else if (!((KnuthElement) contentList.getLast()).isGlue()) { + } else if (!((ListElement) contentList.getLast()).isGlue()) { // add a null penalty to allow a break between blocks contentList.add(new BreakElement( new Position(this), 0, context)); |