diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-20 21:39:05 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-06-21 03:31:51 +0800 |
commit | 6ebc2970c9b06890660923461b93c43fe68a1f0d (patch) | |
tree | edeb21545348f8658298c27dcbd65de336bf54e7 | |
parent | 1aaa09f103379264b89c38873bb8e00f53ecd876 (diff) | |
download | gsoc2013-evolution-6ebc2970c9b06890660923461b93c43fe68a1f0d.tar.gz gsoc2013-evolution-6ebc2970c9b06890660923461b93c43fe68a1f0d.tar.zst gsoc2013-evolution-6ebc2970c9b06890660923461b93c43fe68a1f0d.zip |
Remove unused e_tree_drag_unhighlight().
-rw-r--r-- | doc/reference/evolution-util/evolution-util-sections.txt | 1 | ||||
-rw-r--r-- | e-util/e-tree.c | 11 | ||||
-rw-r--r-- | e-util/e-tree.h | 2 |
3 files changed, 0 insertions, 14 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt index 1c784f8925..c94b9249b7 100644 --- a/doc/reference/evolution-util/evolution-util-sections.txt +++ b/doc/reference/evolution-util/evolution-util-sections.txt @@ -4203,7 +4203,6 @@ e_tree_get_cell_geometry e_tree_get_model e_tree_get_selection_model e_tree_get_table_adapter -e_tree_drag_unhighlight 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 8c891889af..6b2b693c66 100644 --- a/e-util/e-tree.c +++ b/e-util/e-tree.c @@ -2546,17 +2546,6 @@ struct _GtkDragSourceInfo /* Drag & drop stuff. */ -void -e_tree_drag_unhighlight (ETree *tree) -{ - g_return_if_fail (E_IS_TREE (tree)); - - if (tree->priv->drop_highlight) { - g_object_run_dispose (G_OBJECT (tree->priv->drop_highlight)); - tree->priv->drop_highlight = NULL; - } -} - /* Source side */ static gint diff --git a/e-util/e-tree.h b/e-util/e-tree.h index da160805e9..9b61fd2b01 100644 --- a/e-util/e-tree.h +++ b/e-util/e-tree.h @@ -250,8 +250,6 @@ ETreeTableAdapter * e_tree_get_table_adapter (ETree *tree); /* Drag & drop stuff. */ -/* Target */ -void e_tree_drag_unhighlight (ETree *tree); /* Source side */ void e_tree_drag_source_set (ETree *tree, |