From 8bd90ee0989a764ea6d8a3389d56f1efe86da2ce Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Tue, 24 Sep 2002 05:28:50 +0000 Subject: [PATCH] Changed invocation of parse() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195242 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/FONode.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/apache/fop/fo/FONode.java b/src/org/apache/fop/fo/FONode.java index 65725072d..1e121aacf 100644 --- a/src/org/apache/fop/fo/FONode.java +++ b/src/org/apache/fop/fo/FONode.java @@ -123,8 +123,8 @@ public class FONode extends FOTree.Node{ { // parse the expression exprParser.resetParser(); - foTree.args[0] = foTree; - foTree.args[1] = exprParser.parse(property, attrValue); + foTree.args[0] = this; + foTree.args[1] = exprParser.parse(this, property, attrValue); try { return (PropertyValue) (((Method)PropertyConsts.refineParsingMethods -- 2.39.5