diff options
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); |