diff options
author | Glen Mazza <gmazza@apache.org> | 2003-12-22 03:53:31 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2003-12-22 03:53:31 +0000 |
commit | 65efc8ad67604e3fee2337a1066ac02299951817 (patch) | |
tree | cce064782472ce2c53507660876d84bfc8b3856a /src/java/org/apache/fop/fo/LengthRangeProperty.java | |
parent | 657644f5904c56555d5ffca15ff297343cfbbd61 (diff) | |
download | xmlgraphics-fop-65efc8ad67604e3fee2337a1066ac02299951817.tar.gz xmlgraphics-fop-65efc8ad67604e3fee2337a1066ac02299951817.zip |
----------------------------------------------------------------------
More of conversion of strings to integers: Makers now being created via int constants in fo.properties.Constants class.
Temporary string-int conversions currently in Property.java and PropertyList.java, which converts strings from callers into ints for subsequent use.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197047 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/LengthRangeProperty.java')
-rw-r--r-- | src/java/org/apache/fop/fo/LengthRangeProperty.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/LengthRangeProperty.java b/src/java/org/apache/fop/fo/LengthRangeProperty.java index 401040dd8..b2a647a6c 100644 --- a/src/java/org/apache/fop/fo/LengthRangeProperty.java +++ b/src/java/org/apache/fop/fo/LengthRangeProperty.java @@ -65,8 +65,8 @@ public class LengthRangeProperty extends Property { /** * @param name name of property for which to create Maker */ - protected Maker(String name) { - super(name); + protected Maker(int propId) { + super(propId); } } |