aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2008-05-15 08:33:19 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2008-05-15 08:33:19 +0000
commit45b7f434f711e1725bd43585006eb98d0e28b343 (patch)
treee5df38c0073d7fe038ec106e39dbc248f4a70838 /src
parent5ddc5de10c12ff703a4e26a8a5e5c25bb45dcfe3 (diff)
downloadxmlgraphics-fop-45b7f434f711e1725bd43585006eb98d0e28b343.tar.gz
xmlgraphics-fop-45b7f434f711e1725bd43585006eb98d0e28b343.zip
Tweak: make sure the fo:flow's id is bound to the FObj
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@656546 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/fop/fo/pagination/Flow.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/fo/pagination/Flow.java b/src/java/org/apache/fop/fo/pagination/Flow.java
index 8e114c47f..d3682fa81 100644
--- a/src/java/org/apache/fop/fo/pagination/Flow.java
+++ b/src/java/org/apache/fop/fo/pagination/Flow.java
@@ -50,6 +50,7 @@ public class Flow extends FObj {
/** {@inheritDoc} */
public void bind(PropertyList pList) throws FOPException {
+ super.bind(pList);
flowName = pList.get(PR_FLOW_NAME).getString();
}