diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2009-07-10 19:57:52 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2009-07-10 19:57:52 +0000 |
commit | 16ae24e8a30325e8dea0f549d109465184f1c1c8 (patch) | |
tree | 6cb5c621023f2b34216c95e659a86fcad3a946d1 /src/java | |
parent | 37f5573e66f1e4ef0d7604d888e4d67f2b04aa7c (diff) | |
download | xmlgraphics-fop-16ae24e8a30325e8dea0f549d109465184f1c1c8.tar.gz xmlgraphics-fop-16ae24e8a30325e8dea0f549d109465184f1c1c8.zip |
Bugzilla 47508: Fix error while writing TLE's attribute qualifier in the output. Thanks to Bharat Attaluri.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@793095 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/fop/afp/modca/TagLogicalElement.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/afp/modca/TagLogicalElement.java b/src/java/org/apache/fop/afp/modca/TagLogicalElement.java index 9ccd58bfb..5c1f7bbbb 100644 --- a/src/java/org/apache/fop/afp/modca/TagLogicalElement.java +++ b/src/java/org/apache/fop/afp/modca/TagLogicalElement.java @@ -64,7 +64,7 @@ public class TagLogicalElement extends AbstractAFPObject { /** * Construct a tag logical element with the name and value specified. - * + * * @param name the name of the tag logical element * @param value the value of the tag logical element * @param tleID unique identifier for TLE within AFP stream @@ -135,7 +135,7 @@ public class TagLogicalElement extends AbstractAFPObject { data[pos++] = tleByteValue[i]; } // attribute qualifier - data[pos++] = 0x10; + data[pos++] = 0x0A; data[pos++] = (byte)0x80; byte[] id = BinaryUtils.convert(tleID, 4); for (int i = 0; i < id.length; i++) { |