X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-view-accessible.c;h=3bf28d9b9c8c291b7ab3cb03d6e955b338ce50e0;hb=0be3be0d4166be324d628802772e99cacd336f11;hp=25a3ac2ba28a035ae89c4b684d2e7e98d5767967;hpb=1af6600934d1f723e5b492b8322e52a1144fb0af;p=evince.git diff --git a/shell/ev-view-accessible.c b/shell/ev-view-accessible.c index 25a3ac2b..3bf28d9b 100644 --- a/shell/ev-view-accessible.c +++ b/shell/ev-view-accessible.c @@ -54,7 +54,7 @@ typedef struct { /* Action */ gchar *action_descriptions[LAST_ACTION]; guint action_idle_handler; - EvScrollType idle_scroll; + GtkScrollType idle_scroll; } EvViewAccessiblePriv; typedef GtkAccessibleClass EvViewAccessibleClass; @@ -390,10 +390,10 @@ ev_view_accessible_action_do_action (AtkAction *action, switch (i) { case ACTION_SCROLL_UP: - priv->idle_scroll = EV_SCROLL_PAGE_BACKWARD; + priv->idle_scroll = GTK_SCROLL_PAGE_BACKWARD; break; case ACTION_SCROLL_DOWN: - priv->idle_scroll = EV_SCROLL_PAGE_FORWARD; + priv->idle_scroll = GTK_SCROLL_PAGE_FORWARD; break; default: return FALSE;