Index: src/java/org/apache/fop/fo/properties/TextDecorationProperty.java
===================================================================
RCS file: /home/cvspublic/xml-fop/src/java/org/apache/fop/fo/properties/TextDecorationProperty.java,v
retrieving revision 1.1
diff -u -r1.1 TextDecorationProperty.java
--- src/java/org/apache/fop/fo/properties/TextDecorationProperty.java	25 Jan 2005 10:55:46 -0000	1.1
+++ src/java/org/apache/fop/fo/properties/TextDecorationProperty.java	18 Feb 2005 23:41:56 -0000
@@ -71,11 +71,11 @@
                 if (prop instanceof EnumProperty) {
                     //skip
                 } else if (prop instanceof NCnameProperty) {
-                    Property enum = checkEnumValues(((NCnameProperty)prop).getString());
-                    if (enum == null) {
+                    Property prop_enum = checkEnumValues(((NCnameProperty)prop).getString());
+                    if (prop_enum == null) {
                         throw new PropertyException("Illegal enum value: " + prop.getString());
                     }
-                    l.set(i, enum);
+                    l.set(i, prop_enum);
                 } else {
                     throw new PropertyException("Invalid content for text-decoration "
                             + "property: " + prop);
Index: src/java/org/apache/fop/fo/properties/CommonTextDecoration.java
===================================================================
RCS file: /home/cvspublic/xml-fop/src/java/org/apache/fop/fo/properties/CommonTextDecoration.java,v
retrieving revision 1.2
diff -u -r1.2 CommonTextDecoration.java
--- src/java/org/apache/fop/fo/properties/CommonTextDecoration.java	25 Jan 2005 12:53:29 -0000	1.2
+++ src/java/org/apache/fop/fo/properties/CommonTextDecoration.java	18 Feb 2005 23:41:56 -0000
@@ -72,51 +72,51 @@
         Iterator i = list.iterator();
         while (i.hasNext()) {
             Property prop = (Property)i.next(); 
-            int enum = prop.getEnum();
-            if (enum == Constants.EN_NONE) {
+            int prop_enum = prop.getEnum();
+            if (prop_enum == Constants.EN_NONE) {
                 if (deco != null) {
                     deco.decoration = 0;
                 }
                 return deco;
-            } else if (enum == Constants.EN_UNDERLINE) {
+            } else if (prop_enum == Constants.EN_UNDERLINE) {
                 if (deco == null) {
                     deco = new CommonTextDecoration();
                 }
                 deco.decoration |= UNDERLINE;
                 deco.underColor = pList.get(Constants.PR_COLOR).getColorType();
-            } else if (enum == Constants.EN_NO_UNDERLINE) {
+            } else if (prop_enum == Constants.EN_NO_UNDERLINE) {
                 if (deco != null) {
                     deco.decoration &= OVERLINE | LINE_THROUGH | BLINK;
                     deco.underColor = pList.get(Constants.PR_COLOR).getColorType();
                 }
-            } else if (enum == Constants.EN_OVERLINE) {
+            } else if (prop_enum == Constants.EN_OVERLINE) {
                 if (deco == null) {
                     deco = new CommonTextDecoration();
                 }
                 deco.decoration |= OVERLINE;
                 deco.overColor = pList.get(Constants.PR_COLOR).getColorType();
-            } else if (enum == Constants.EN_NO_OVERLINE) {
+            } else if (prop_enum == Constants.EN_NO_OVERLINE) {
                 if (deco != null) {
                     deco.decoration &= UNDERLINE | LINE_THROUGH | BLINK;
                     deco.overColor = pList.get(Constants.PR_COLOR).getColorType();
                 }
-            } else if (enum == Constants.EN_LINE_THROUGH) {
+            } else if (prop_enum == Constants.EN_LINE_THROUGH) {
                 if (deco == null) {
                     deco = new CommonTextDecoration();
                 }
                 deco.decoration |= LINE_THROUGH;
                 deco.throughColor = pList.get(Constants.PR_COLOR).getColorType();
-            } else if (enum == Constants.EN_NO_LINE_THROUGH) {
+            } else if (prop_enum == Constants.EN_NO_LINE_THROUGH) {
                 if (deco != null) {
                     deco.decoration &= UNDERLINE | OVERLINE | BLINK;
                     deco.throughColor = pList.get(Constants.PR_COLOR).getColorType();
                 }
-            } else if (enum == Constants.EN_BLINK) {
+            } else if (prop_enum == Constants.EN_BLINK) {
                 if (deco == null) {
                     deco = new CommonTextDecoration();
                 }
                 deco.decoration |= BLINK;
-            } else if (enum == Constants.EN_NO_BLINK) {
+            } else if (prop_enum == Constants.EN_NO_BLINK) {
                 if (deco != null) {
                     deco.decoration &= UNDERLINE | OVERLINE | LINE_THROUGH;
                 }
