From ce6974d1fd30268e8304bf4aab947ae4654ceb87 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Thu, 31 Oct 2002 02:55:11 +0000 Subject: [PATCH] Changed 'inherited' to COMPUTED. Seems more reasonable than NO. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195393 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/properties/TextDecoration.java | 2 +- src/org/apache/fop/fo/properties/TextShadow.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/apache/fop/fo/properties/TextDecoration.java b/src/org/apache/fop/fo/properties/TextDecoration.java index 55fd7b49f..a21344cb8 100644 --- a/src/org/apache/fop/fo/properties/TextDecoration.java +++ b/src/org/apache/fop/fo/properties/TextDecoration.java @@ -26,7 +26,7 @@ public class TextDecoration extends Property { return new TextDecorations (PropNames.TEXT_DECORATION, NO_DECORATION); } - public static final int inherited = NO; + public static final int inherited = COMPUTED; /** Text decoration constant */ public static final byte diff --git a/src/org/apache/fop/fo/properties/TextShadow.java b/src/org/apache/fop/fo/properties/TextShadow.java index 422d61cce..bfb4ecd15 100644 --- a/src/org/apache/fop/fo/properties/TextShadow.java +++ b/src/org/apache/fop/fo/properties/TextShadow.java @@ -15,7 +15,7 @@ public class TextShadow extends ColorNonTransparent { public static final int dataTypes = COMPLEX | NONE | INHERIT; public static final int traitMapping = RENDERING; public static final int initialValueType = NONE_IT; - public static final int inherited = NO; + public static final int inherited = COMPUTED; /** -- 2.39.5