From 654f55e1c67e127dbfac22b7e7a67add5b2ff318 Mon Sep 17 00:00:00 2001 From: Karen Lease Date: Sun, 14 Oct 2001 20:29:12 +0000 Subject: [PATCH] Fix a bug in initializing compound properties like inline-progression-dimension from their 'corresponding' properties git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194503 13f79535-47bb-0310-9956-ffa450edef68 --- src/codegen/properties.xsl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/codegen/properties.xsl b/src/codegen/properties.xsl index 06c37eee7..f00be7833 100644 --- a/src/codegen/properties.xsl +++ b/src/codegen/properties.xsl @@ -502,7 +502,9 @@ public class extends subprop= propertyList.getExplicitOrShorthand(sbExpr.toString()); - setSubprop(p, "", subprop); + if (subprop != null) { + setSubprop(p, "", subprop); + } return p; -- 2.39.5