From 62df36db729c222cf47774268a0fb83dabc8c65a Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Mon, 03 Sep 2007 16:35:01 +0000 Subject: Make sure not to use the history with documents not supporting links. 2007-09-03 Carlos Garcia Campos * shell/ev-window.c: (ev_window_add_history): Make sure not to use the history with documents not supporting links. Fixes bug #468954. svn path=/trunk/; revision=2660 --- (limited to 'shell') diff --git a/shell/ev-window.c b/shell/ev-window.c index 7ef19c5..34e94eb 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -704,6 +704,9 @@ ev_window_add_history (EvWindow *window, gint page, EvLink *link) if (window->priv->history == NULL) return; + + if (!EV_IS_DOCUMENT_LINKS (window->priv->document)) + return; if (link) { action = g_object_ref (ev_link_get_action (link)); @@ -722,8 +725,7 @@ ev_window_add_history (EvWindow *window, gint page, EvLink *link) find_task.page_label = page_label; find_task.chapter = NULL; - if (EV_IS_DOCUMENT_LINKS (window->priv->document) && - ev_document_links_has_document_links (EV_DOCUMENT_LINKS (window->priv->document))) { + if (ev_document_links_has_document_links (EV_DOCUMENT_LINKS (window->priv->document))) { GtkTreeModel *model; g_object_get (G_OBJECT (window->priv->sidebar_links), "model", &model, NULL); -- cgit v0.9.1