diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-20 21:32:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-06-21 03:31:51 +0800 |
commit | 935586a0f15047057ad1a9d866926676cb75dda3 (patch) | |
tree | b76c857c216fd8a5da57bd5c99983797c6f62e17 | |
parent | 19aa67153ffc3f67a2618f3cca162aadc694f3ec (diff) | |
download | gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.tar gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.tar.gz gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.tar.bz2 gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.tar.lz gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.tar.xz gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.tar.zst gsoc2013-evolution-935586a0f15047057ad1a9d866926676cb75dda3.zip |
Remove unused e_tree_drag_dest_unset().
It just calls gtk_drag_dest_unset() anyway.
-rw-r--r-- | doc/reference/evolution-util/evolution-util-sections.txt | 1 | ||||
-rw-r--r-- | e-util/e-tree.c | 13 | ||||
-rw-r--r-- | e-util/e-tree.h | 5 |
3 files changed, 0 insertions, 19 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt index 2b146c9018..242992ca84 100644 --- a/doc/reference/evolution-util/evolution-util-sections.txt +++ b/doc/reference/evolution-util/evolution-util-sections.txt @@ -4206,7 +4206,6 @@ e_tree_get_table_adapter e_tree_drag_get_data e_tree_drag_highlight e_tree_drag_unhighlight -e_tree_drag_dest_unset e_tree_drag_source_set e_tree_drag_source_unset e_tree_drag_begin diff --git a/e-util/e-tree.c b/e-util/e-tree.c index 2c535e539d..87ffba64dc 100644 --- a/e-util/e-tree.c +++ b/e-util/e-tree.c @@ -2638,19 +2638,6 @@ e_tree_drag_unhighlight (ETree *tree) } } -/* - * There probably should be functions for setting the targets - * as a GtkTargetList - */ - -void -e_tree_drag_dest_unset (GtkWidget *widget) -{ - g_return_if_fail (E_IS_TREE (widget)); - - gtk_drag_dest_unset (widget); -} - /* Source side */ static gint diff --git a/e-util/e-tree.h b/e-util/e-tree.h index 27c921c3b1..3006be3846 100644 --- a/e-util/e-tree.h +++ b/e-util/e-tree.h @@ -262,11 +262,6 @@ void e_tree_drag_highlight (ETree *tree, gint col); /* col == -1 to highlight entire row. */ void e_tree_drag_unhighlight (ETree *tree); -/* There probably should be functions for setting the targets - * as a GtkTargetList - */ -void e_tree_drag_dest_unset (GtkWidget *widget); - /* Source side */ void e_tree_drag_source_set (ETree *tree, GdkModifierType start_button_mask, |