keiron 01/09/18 03:39:16 Modified: src/org/apache/fop/fo/flow Table.java Log: fixes a problem where the table header was not reset if could not fit on first page Revision Changes Path 1.36 +2 -1 xml-fop/src/org/apache/fop/fo/flow/Table.java Index: Table.java =================================================================== RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/flow/Table.java,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- Table.java 2001/09/11 10:04:24 1.35 +++ Table.java 2001/09/18 10:39:16 1.36 @@ -1,5 +1,5 @@ /* - * -- $Id: Table.java,v 1.35 2001/09/11 10:04:24 keiron Exp $ -- + * -- $Id: Table.java,v 1.36 2001/09/18 10:39:16 keiron Exp $ -- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. * For details on use and redistribution please refer to the * LICENSE file included with these sources. @@ -219,6 +219,7 @@ if (tableHeader != null &&!addedHeader) { if ((status = tableHeader.layout(areaContainer)).isIncomplete()) { + tableHeader.resetMarker(); return new Status(Status.AREA_FULL_NONE); } addedHeader = true; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]