aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-12-19 08:12:04 +0000
committerKeiron Liddle <keiron@apache.org>2002-12-19 08:12:04 +0000
commit585db601f32eedc7a0bd65a435c4532e63417ab2 (patch)
tree2215f5eb492f9c408248b25f4576d78d01346b40 /src/org/apache/fop
parent2906fb17c1f4b004356890522e8bee0788973430 (diff)
downloadxmlgraphics-fop-585db601f32eedc7a0bd65a435c4532e63417ab2.tar.gz
xmlgraphics-fop-585db601f32eedc7a0bd65a435c4532e63417ab2.zip
compare to correct string
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195781 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop')
-rw-r--r--src/org/apache/fop/fo/PropertyList.java2
1 files changed, 1 insertions, 1 deletions
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);
}