Explorar el Código

Fixed minor bug where duplicate ids are added to an area when a table

row flows over a page break.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193906 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_17_0
Kelly Campbell hace 23 años
padre
commit
acb63d2b4c
Se han modificado 1 ficheros con 6 adiciones y 3 borrados
  1. 6
    3
      src/org/apache/fop/fo/flow/TableRow.java

+ 6
- 3
src/org/apache/fop/fo/flow/TableRow.java Ver fichero

@@ -349,9 +349,12 @@ public class TableRow extends FObj {
if (area instanceof BlockArea) {
area.end();
}

area.getIDReferences().createID(id);
configID = true;
if (cells == null) { // check to make sure this row hasn't been partially
// laid out yet (with an id created already)
area.getIDReferences().createID(id);
configID = true;
}

this.marker = 0;
}

Cargando…
Cancelar
Guardar