diff options
author | Xan Lopez <xan@gnome.org> | 2010-06-13 03:44:24 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-06-13 04:01:46 +0800 |
commit | 53e41b39402f4fe7e81b8167d549b4d6b2eb1519 (patch) | |
tree | e72ef3761c002d310df2ad3518ab62b389499fdc /lib/widgets | |
parent | 79e70c1d4046f227670233736f26ef7da15292b9 (diff) | |
download | gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.tar gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.tar.gz gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.tar.bz2 gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.tar.lz gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.tar.xz gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.tar.zst gsoc2013-epiphany-53e41b39402f4fe7e81b8167d549b4d6b2eb1519.zip |
Use accessor functions when possible
Diffstat (limited to 'lib/widgets')
-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 3a62a226b..1e7fd5c86 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -321,7 +321,7 @@ drag_motion_cb (GtkWidget *widget, priority != EPHY_NODE_VIEW_SPECIAL_PRIORITY && ephy_node_get_is_drag_source (node)) { - action = context->suggested_action; + action = gdk_drag_context_get_suggested_action (context); } } |