pbwest 2002/09/23 22:28:50 Modified: src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design FONode.java Log: Changed invocation of parse() Revision Changes Path No revision No revision 1.19.2.9 +4 -4 xml-fop/src/org/apache/fop/fo/FONode.java Index: FONode.java =================================================================== RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/FONode.java,v retrieving revision 1.19.2.8 retrieving revision 1.19.2.9 diff -u -r1.19.2.8 -r1.19.2.9 --- FONode.java 18 Sep 2002 15:42:12 -0000 1.19.2.8 +++ FONode.java 24 Sep 2002 05:28:50 -0000 1.19.2.9 @@ -123,8 +123,8 @@ { // 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
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]