X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=shell%2Fev-navigation-action.c;h=a2dc6364088159c91a2337aa9bb779eee92d872f;hb=d937b8505ff14af15ae0372ab40a0e81a93b728c;hp=9da89f993c10149f9248799ecdecc8cbb51ef35a;hpb=33bf66b8f4e2d719c847af1c177c71b5173b49aa;p=evince.git diff --git a/shell/ev-navigation-action.c b/shell/ev-navigation-action.c index 9da89f99..a2dc6364 100644 --- a/shell/ev-navigation-action.c +++ b/shell/ev-navigation-action.c @@ -20,17 +20,12 @@ #include "config.h" +#include +#include + #include "ev-navigation-action.h" #include "ev-navigation-action-widget.h" -#include -#include -#include -#include -#include -#include -#include -#include enum { @@ -60,9 +55,8 @@ ev_navigation_action_history_changed (EvHistory *history, { EvNavigationAction *action = EV_NAVIGATION_ACTION (data); - gtk_action_set_sensitive (action, ev_history_get_n_links (history) > 0); - - return; + gtk_action_set_sensitive (GTK_ACTION (action), + ev_history_get_n_links (history) > 0); } void @@ -75,7 +69,7 @@ ev_navigation_action_set_history (EvNavigationAction *action, (gpointer) &action->priv->history); g_signal_connect_object (history, "changed", - ev_navigation_action_history_changed, + G_CALLBACK (ev_navigation_action_history_changed), action, 0); } @@ -134,12 +128,12 @@ build_menu (EvNavigationAction *action) EvHistory *history = action->priv->history; int start, end, i; - menu = GTK_MENU_SHELL (gtk_menu_new ()); - - if (history == NULL) { - return GTK_WIDGET (menu); + if (history == NULL || ev_history_get_n_links (history) <= 0) { + return NULL; } + menu = GTK_MENU_SHELL (gtk_menu_new ()); + start = 0; end = ev_history_get_n_links (history);