diff options
author | Xan Lopez <xan@gnome.org> | 2010-10-24 15:31:08 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-10-24 15:32:22 +0800 |
commit | e6a1b53ad5b92b572017bc756e188ccfc86b7f9a (patch) | |
tree | 35cf97f4ce1c1991f1be285952cf27c473dc03b1 | |
parent | dfb1741fc2daf0280e058bb456f0a952da2a5ee0 (diff) | |
download | gsoc2013-epiphany-e6a1b53ad5b92b572017bc756e188ccfc86b7f9a.tar.gz gsoc2013-epiphany-e6a1b53ad5b92b572017bc756e188ccfc86b7f9a.tar.zst gsoc2013-epiphany-e6a1b53ad5b92b572017bc756e188ccfc86b7f9a.zip |
ephy-node-view: use new GtkScrollable APIs
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index 91ef650ed..5fc62afdb 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -191,7 +191,7 @@ gtk_tree_view_vertical_autoscroll (GtkTreeView *tree_view) float value; window = gtk_tree_view_get_bin_window (tree_view); - vadjustment = gtk_tree_view_get_vadjustment (tree_view); + vadjustment = gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (tree_view)); gdk_window_get_pointer (window, NULL, &y, NULL); |