diff options
author | Glen Mazza <gmazza@apache.org> | 2003-12-28 17:10:17 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2003-12-28 17:10:17 +0000 |
commit | ad99c2eb30a8b8bb26e858a9a09b1465298147b0 (patch) | |
tree | 970703dbab601fd60777d4378b769f45edd20294 /src/java/org/apache/fop/fo/flow/TableBody.java | |
parent | 9a9cc2318e78c79a0ddb9dbeeb56f2bd85b10dde (diff) | |
download | xmlgraphics-fop-ad99c2eb30a8b8bb26e858a9a09b1465298147b0.tar.gz xmlgraphics-fop-ad99c2eb30a8b8bb26e858a9a09b1465298147b0.zip |
Conversion of more properties from Strings to ints.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197072 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/TableBody.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/TableBody.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableBody.java b/src/java/org/apache/fop/fo/flow/TableBody.java index 6ced2d9e0..d997ec0c1 100644 --- a/src/java/org/apache/fop/fo/flow/TableBody.java +++ b/src/java/org/apache/fop/fo/flow/TableBody.java @@ -101,11 +101,11 @@ public class TableBody extends FObj { setupID(); this.spaceBefore = this.propertyList.get( - "space-before.optimum").getLength().getValue(); + PR_SPACE_BEFORE | CP_OPTIMUM).getLength().getValue(); this.spaceAfter = this.propertyList.get( - "space-after.optimum").getLength().getValue(); + PR_SPACE_AFTER | CP_OPTIMUM).getLength().getValue(); this.backgroundColor = - this.propertyList.get("background-color").getColorType(); + this.propertyList.get(PR_BACKGROUND_COLOR).getColorType(); } |