diff options
author | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-09-04 22:12:39 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-09-04 22:12:39 +0800 |
commit | 7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004 (patch) | |
tree | a6fc20b9dce7f522c783a8d9250d2c25df5e4983 /lib/widgets/ephy-node-view.c | |
parent | 4fd122fc251cf062675385259d28af549de75979 (diff) | |
download | gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.tar gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.tar.gz gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.tar.bz2 gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.tar.lz gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.tar.xz gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.tar.zst gsoc2013-epiphany-7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004.zip |
*** empty log message ***
Diffstat (limited to 'lib/widgets/ephy-node-view.c')
-rw-r--r-- | lib/widgets/ephy-node-view.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index 43bb7947b..774a1e9f7 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -454,13 +454,12 @@ drag_data_received_cb (GtkWidget *widget, EphyNode *node; GList *uris; gboolean success = FALSE; - gboolean on_row; GtkTreePath *path; - on_row = gtk_tree_view_get_dest_row_at_pos + gtk_tree_view_get_dest_row_at_pos (GTK_TREE_VIEW (widget), x, y, &path, &pos); - g_return_if_fail (on_row && path != NULL); + g_return_if_fail (path != NULL); node = get_node_from_path (view, path); |