Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-view-accessible.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-09-07 17:20:27 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-09-07 17:20:27 (GMT)
commit5f7d46028f2345a1e4d1690fc8d2228fc1a9c506 (patch)
tree46e31ffa3c5f0abc06121cc22fa3f56ecedf2974 /shell/ev-view-accessible.c
parentcfe4ba6711c12ea9ad1ddba4cbd60e964715170b (diff)
Use GtkScrollType instead of EvScrollType.
2008-09-07 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-view-private.h: * shell/ev-view.[ch]: (add_scroll_binding_keypad), (ev_view_scroll), (ev_view_class_init): * shell/ev-view-accessible.c: (ev_view_accessible_action_do_action): * shell/ev-window.c: (ev_window_cmd_scroll_forward), (ev_window_cmd_scroll_backward): Use GtkScrollType instead of EvScrollType. svn path=/trunk/; revision=3162
Diffstat (limited to 'shell/ev-view-accessible.c')
-rw-r--r--shell/ev-view-accessible.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/ev-view-accessible.c b/shell/ev-view-accessible.c
index 25a3ac2..3bf28d9 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;