]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
made removeChild public. Necessary for fixing table overflow bug
authorJordan Naftolin <jordan@apache.org>
Wed, 19 Jul 2000 17:18:01 +0000 (17:18 +0000)
committerJordan Naftolin <jordan@apache.org>
Wed, 19 Jul 2000 17:18:01 +0000 (17:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193527 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/layout/Area.java

index 4b3c20cebfcf99cb220a4101ddd69418c3045e3e..bed0a247eb2e38b70c83f28da5daa45b8d723b80 100644 (file)
@@ -220,7 +220,7 @@ abstract public class Area extends Box {
         this.absoluteHeight += amount;
     }
 
-    protected void removeChild(Area area) {
+    public void removeChild(Area area) {
        this.currentHeight -= area.getHeight();
         this.absoluteHeight -= area.getHeight();
        this.children.removeElement(area);