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. --- diff --git a/ChangeLog b/ChangeLog index 90350f0..2f7a796 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +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. + 2005-02-27 Marco Pesenti Gritti * NEWS: 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"); diff --git a/shell/ev-sidebar-links.c b/shell/ev-sidebar-links.c index 03d445e..19b9ecf 100644 --- a/shell/ev-sidebar-links.c +++ b/shell/ev-sidebar-links.c @@ -251,6 +251,7 @@ do_one_iteration (EvSidebarLinks *ev_sidebar_links) IdleStackData *stack_data; GtkTreeIter tree_iter; EvDocumentLinksIter *child_iter; + EvLinkType link_type; gint page; g_assert (priv->idle_stack); @@ -266,12 +267,12 @@ do_one_iteration (EvSidebarLinks *ev_sidebar_links) } page = ev_link_get_page (link); + link_type = ev_link_get_link_type (link); gtk_tree_store_append (GTK_TREE_STORE (priv->model), &tree_iter, stack_data->tree_iter); gtk_tree_store_set (GTK_TREE_STORE (priv->model), &tree_iter, LINKS_COLUMN_MARKUP, ev_link_get_title (link), LINKS_COLUMN_PAGE_NUM, page, - /* FIXME: Handle links for real. */ - LINKS_COLUMN_PAGE_VALID, (page >= 0), + LINKS_COLUMN_PAGE_VALID, (link_type == EV_LINK_TYPE_PAGE), LINKS_COLUMN_LINK, link, -1); g_object_unref (link); -- cgit v0.9.1