aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-tree-model-sort.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-04-08 03:41:46 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-04-08 03:41:46 +0800
commit20dd70b526a557dccd623f9a1c0b05720317e9f7 (patch)
treeb138618f8e9d3daf7d9d915495b367dbec198b1e /lib/widgets/ephy-tree-model-sort.c
parent30177ef207092d95ebbc2c835d52262618436c90 (diff)
downloadgsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.tar
gsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.tar.gz
gsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.tar.bz2
gsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.tar.lz
gsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.tar.xz
gsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.tar.zst
gsoc2013-epiphany-20dd70b526a557dccd623f9a1c0b05720317e9f7.zip
Move and autoupdate these from egg.
2003-04-07 Marco Pesenti Gritti <marco@it.gnome.org> * lib/widgets/Makefile.am: * lib/widgets/eggtreemodelfilter.c: * lib/widgets/eggtreemodelfilter.h: * lib/widgets/eggtreemultidnd.c: * lib/widgets/eggtreemultidnd.h: * lib/egg/Makefile.am: * lib/egg/eggtreemodelfilter.c: * lib/egg/eggtreemodelfilter.h: * lib/egg/eggtreemultidnd.c: * lib/egg/eggtreemultidnd.h: * lib/egg/update-from-egg.sh: Move and autoupdate these from egg. * lib/ephy-dnd.c: * lib/ephy-dnd.h: * src/ephy-favicon-action.c: Remove an unnecessary param in ephydnd API. * lib/widgets/ephy-tree-model-sort.c: Use the real multidnd api. 2
Diffstat (limited to 'lib/widgets/ephy-tree-model-sort.c')
-rw-r--r--lib/widgets/ephy-tree-model-sort.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/widgets/ephy-tree-model-sort.c b/lib/widgets/ephy-tree-model-sort.c
index bc32131f3..1d03effb8 100644
--- a/lib/widgets/ephy-tree-model-sort.c
+++ b/lib/widgets/ephy-tree-model-sort.c
@@ -37,7 +37,6 @@ static gboolean ephy_tree_model_sort_multi_row_draggable (EggTreeMultiDragSource
GList *path_list);
static gboolean ephy_tree_model_sort_multi_drag_data_get (EggTreeMultiDragSource *drag_source,
GList *path_list,
- guint info,
GtkSelectionData *selection_data);
static gboolean ephy_tree_model_sort_multi_drag_data_delete (EggTreeMultiDragSource *drag_source,
GList *path_list);
@@ -269,7 +268,6 @@ each_node_get_data_binder (EphyDragEachSelectedItemDataGet iteratee,
static gboolean
ephy_tree_model_sort_multi_drag_data_get (EggTreeMultiDragSource *drag_source,
GList *path_list,
- guint info,
GtkSelectionData *selection_data)
{
GdkAtom target;
@@ -285,7 +283,7 @@ ephy_tree_model_sort_multi_drag_data_get (EggTreeMultiDragSource *drag_source,
icontext[1] = drag_source;
ephy_dnd_drag_data_get (NULL, NULL, selection_data,
- info, 0, &icontext, each_node_get_data_binder);
+ 0, &icontext, each_node_get_data_binder);
}
else
@@ -296,7 +294,7 @@ ephy_tree_model_sort_multi_drag_data_get (EggTreeMultiDragSource *drag_source,
icontext[1] = drag_source;
ephy_dnd_drag_data_get (NULL, NULL, selection_data,
- info, 0, &icontext, each_url_get_data_binder);
+ 0, &icontext, each_url_get_data_binder);
}
return TRUE;