]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FONode arg added to Ems.makeEms.
authorPeter Bernard West <pbwest@apache.org>
Tue, 12 Nov 2002 01:34:31 +0000 (01:34 +0000)
committerPeter Bernard West <pbwest@apache.org>
Tue, 12 Nov 2002 01:34:31 +0000 (01:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195500 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/properties/LineHeightMaximum.java
src/org/apache/fop/fo/properties/LineHeightMinimum.java
src/org/apache/fop/fo/properties/LineHeightOptimum.java

index 6081e5daec796ac95a668fdbbeefe03a0b341133..f0b97e5c63ed6e5a1c5842cb7fbd6d2bf3a7c6df 100644 (file)
@@ -13,7 +13,7 @@ public class LineHeightMaximum extends Property  {
     public PropertyValue getInitialValue(int property)
         throws PropertyException
     {
-        return Ems.makeEms(PropNames.LINE_HEIGHT_MAXIMUM, 1.2d);
+        return Ems.makeEms(null, PropNames.LINE_HEIGHT_MAXIMUM, 1.2d);
     }
     public static final int inherited = COMPUTED;
 }
index 5ba6b8f40098c1ed235455d114a8c627d0e10371..a8838cc536c42b6fac81869bebb7108c2cfc287f 100644 (file)
@@ -13,7 +13,7 @@ public class LineHeightMinimum extends Property  {
     public PropertyValue getInitialValue(int property)
         throws PropertyException
     {
-        return Ems.makeEms(PropNames.LINE_HEIGHT_MINIMUM, 1.2d);
+        return Ems.makeEms(null, PropNames.LINE_HEIGHT_MINIMUM, 1.2d);
     }
     public static final int inherited = COMPUTED;
 }
index 50fb6eae21f9a3731ec4327a9bab1fbf9bdadcfe..9b8c1034f240c5825e83e8877f3f21346b97ae4d 100644 (file)
@@ -13,7 +13,7 @@ public class LineHeightOptimum extends Property  {
     public PropertyValue getInitialValue(int property)
         throws PropertyException
     {
-        return Ems.makeEms(PropNames.LINE_HEIGHT_OPTIMUM, 1.2d);
+        return Ems.makeEms(null, PropNames.LINE_HEIGHT_OPTIMUM, 1.2d);
     }
     public static final int inherited = COMPUTED;
 }