]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Very minor edits to Bookmark handling code.
authorGlen Mazza <gmazza@apache.org>
Thu, 23 Dec 2004 01:36:01 +0000 (01:36 +0000)
committerGlen Mazza <gmazza@apache.org>
Thu, 23 Dec 2004 01:36:01 +0000 (01:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198207 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/pdf/PDFRenderer.java

index 714cd9d0c4f1adb7b75d1e2e2edca7577acaddcb..abd2357c8fe784dfa1c38823f62d22a12a296934 100644 (file)
@@ -300,7 +300,6 @@ public class PDFRenderer extends PrintRenderer {
     }
 
     private void renderOutline(BookmarkData outline, PDFOutline parentOutline) {
-        PDFOutline outlineRoot = pdfDoc.getOutlineRoot();
         PDFOutline pdfOutline = null;
         PageViewport pv = outline.getPageViewport();
         if (pv != null) {
@@ -309,11 +308,11 @@ public class PDFRenderer extends PrintRenderer {
             float yoffset = (float)h / 1000f;
             String intDest = (String)pageReferences.get(pv.getKey());
             if (parentOutline == null) {
+                PDFOutline outlineRoot = pdfDoc.getOutlineRoot();
                 pdfOutline = pdfDoc.getFactory().makeOutline(outlineRoot,
                                         outline.getLabel(), intDest, yoffset);
             } else {
-                PDFOutline pdfParentOutline = parentOutline;
-                pdfOutline = pdfDoc.getFactory().makeOutline(pdfParentOutline,
+                pdfOutline = pdfDoc.getFactory().makeOutline(parentOutline,
                                         outline.getLabel(), intDest, yoffset);
             }
         }