keiron 02/02/20 02:41:45
Modified: src/org/apache/fop/fo PropertyList.java
Log:
put in inherit keyword
Revision Changes Path
1.17 +3 -4 xml-fop/src/org/apache/fop/fo/PropertyList.java
Index: PropertyList.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/PropertyList.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- PropertyList.java 22 Nov 2001 07:11:39 -0000 1.16
+++ PropertyList.java 20 Feb 2002 10:41:45 -0000 1.17
@@ -1,5 +1,5 @@
/*
- * $Id: PropertyList.java,v 1.16 2001/11/22 07:11:39 keiron Exp $
+ * $Id: PropertyList.java,v 1.17 2002/02/20 10:41:45 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.
@@ -252,16 +252,15 @@
// don't know what to do here
}
}
-/*
+
// if value is inherit then get computed value from
// parent
- // namespaces??
if(p != null && "inherit".equals(p.getString())) {
if (this.parentPropertyList != null) {
p = parentPropertyList.get(propertyName, true, false);
}
}
-*/
+
if (subpropName != null && p != null) {
return this.builder.getSubpropValue(namespace, element,
propertyName, p, subpropName);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]