]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Changed derivation of initial value for initialValueExpansion
authorPeter Bernard West <pbwest@apache.org>
Thu, 4 Jul 2002 01:25:53 +0000 (01:25 +0000)
committerPeter Bernard West <pbwest@apache.org>
Thu, 4 Jul 2002 01:25:53 +0000 (01:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@194953 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/PropertySets.java

index 48323cbcac28e57788a8fbad71483dca4d124465..0c958c23f8e926ffdfbb3d1036bbc8c9a5482bd8 100644 (file)
@@ -748,8 +748,8 @@ public class PropertySets {
         for (int i = 0; i < expansion.length; i++) {
             int expandedProp = expansion.get(i);
             PropertyValue expandedPropValue;
-            PropertyValue specified =
-                    foTree.getInitialValue(expandedProp).getSpecified();
+            PropertyValue specified
+                    = foTree.getInitialSpecifiedValue(expandedProp);
             //   The PropertyValue must be cloneable
             try {
                 expandedPropValue = (PropertyValue)(specified.clone());