]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Wrapper does now set the TextState.
authorJoerg Pietschmann <pietsch@apache.org>
Sat, 10 Aug 2002 18:39:08 +0000 (18:39 +0000)
committerJoerg Pietschmann <pietsch@apache.org>
Sat, 10 Aug 2002 18:39:08 +0000 (18:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195075 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/flow/Wrapper.java

index fafb36d88502ff447a20c66e4dd41e5c36bb76da..14510be935bc76c826cd73c848e38135758a18e4 100644 (file)
@@ -38,9 +38,11 @@ public class Wrapper extends FObjMixed {
         return "fo:wrapper";
     }
 
-    public Wrapper(FObj parent, PropertyList propertyList) {
+    public Wrapper(FObj parent, PropertyList propertyList)
+       throws FOPException {
         super(parent, propertyList);
         // check that this occurs inside an fo:flow
+        ts = propMgr.getTextDecoration(parent);
     }
 
 }