diff options
Diffstat (limited to 'src/java/org/apache/fop/pdf/PDFRoot.java')
-rw-r--r-- | src/java/org/apache/fop/pdf/PDFRoot.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/pdf/PDFRoot.java b/src/java/org/apache/fop/pdf/PDFRoot.java index 1a54a209f..54cadf616 100644 --- a/src/java/org/apache/fop/pdf/PDFRoot.java +++ b/src/java/org/apache/fop/pdf/PDFRoot.java @@ -225,7 +225,7 @@ public class PDFRoot extends PDFDictionary { if (getDocumentSafely().getPDFVersion() >= PDFDocument.PDF_VERSION_1_4) { PDFArray outputIntents = getOutputIntents(); if (outputIntents == null) { - outputIntents = new PDFArray(); + outputIntents = new PDFArray(this); put("OutputIntents", outputIntents); } outputIntents.add(outputIntent); |