From a9bcdd80180c7417fe9e2d9e25dcfc3f8a781c5f Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Mon, 28 Feb 2005 04:03:27 +0000 Subject: Handle title links for real. Gosh, how long has this been broken. Sun Feb 27 23:00:31 2005 Jonathan Blandford * shell/ev-sidebar-links.c (do_one_iteration): Handle title links for real. Gosh, how long has this been broken. * pdf/xpdf/pdf-document.cc (build_link_from_action): add back the check for a NULL link. We crash otherwise. --- (limited to 'pdf') diff --git a/pdf/xpdf/pdf-document.cc b/pdf/xpdf/pdf-document.cc index 49da9e9..41c2eb8 100644 --- a/pdf/xpdf/pdf-document.cc +++ b/pdf/xpdf/pdf-document.cc @@ -813,7 +813,9 @@ build_link_from_action (PdfDocument *pdf_document, { EvLink *link = NULL; - if (link_action->getKind () == actionGoToR) { + if (link_action == NULL) { + link = ev_link_new_title (title); + } else if (link_action->getKind () == actionGoToR) { g_warning ("actionGoToR links not implemented"); } else if (link_action->getKind () == actionLaunch) { g_warning ("actionLaunch links not implemented"); -- cgit v0.9.1