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 jo...@locus.apache.org on 2000/07/19 19:18:03 UTC

cvs commit: xml-fop/src/org/apache/fop/layout Area.java

jordan      00/07/19 10:18:02

  Modified:    src/org/apache/fop/layout Area.java
  Log:
  made removeChild public.  Necessary for fixing table overflow bug
  
  Revision  Changes    Path
  1.12      +2 -2      xml-fop/src/org/apache/fop/layout/Area.java
  
  Index: Area.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/layout/Area.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Area.java	2000/06/21 01:32:51	1.11
  +++ Area.java	2000/07/19 17:18:01	1.12
  @@ -1,4 +1,4 @@
  -/*-- $Id: Area.java,v 1.11 2000/06/21 01:32:51 jordan Exp $ -- 
  +/*-- $Id: Area.java,v 1.12 2000/07/19 17:18:01 jordan Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -220,7 +220,7 @@
           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);