From: Keiron Liddle Date: Thu, 19 Dec 2002 08:12:04 +0000 (+0000) Subject: compare to correct string X-Git-Tag: Alt-Design-integration-base~234 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=585db601f32eedc7a0bd65a435c4532e63417ab2;p=xmlgraphics-fop.git compare to correct string git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195781 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/PropertyList.java b/src/org/apache/fop/fo/PropertyList.java index bab83a353..b1ce1d130 100644 --- a/src/org/apache/fop/fo/PropertyList.java +++ b/src/org/apache/fop/fo/PropertyList.java @@ -255,7 +255,7 @@ public class PropertyList extends HashMap { // if value is inherit then get computed value from // parent - if(p != null && "inherit".equals(p.getString())) { + if(p != null && "inherit".equals(p.getSpecifiedValue())) { if (this.parentPropertyList != null) { p = parentPropertyList.get(propertyName, true, false); }