aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2009-01-05 07:06:36 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2009-01-05 07:06:36 +0800
commit391523a531c62514258301b87869191e7ab2fa18 (patch)
tree041d35b9f87960ff5b45e848312ac573f8ee80b5 /src
parent2dd2cfc161aef09fc1310ea9750e948596b943ba (diff)
downloadgsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.tar
gsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.tar.gz
gsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.tar.bz2
gsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.tar.lz
gsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.tar.xz
gsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.tar.zst
gsoc2013-epiphany-391523a531c62514258301b87869191e7ab2fa18.zip
Remove leftover search_entry_clear_cb function
svn path=/trunk/; revision=8670
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 4175dec1f..a1cabef47 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -1579,25 +1579,6 @@ search_entry_search_cb (GtkWidget *entry, const char *search_text, EphyBookmarks
ephy_node_filter_done_changing (editor->priv->bookmarks_filter);
}
-static gboolean
-search_entry_clear_cb (GtkWidget *ebox,
- GdkEventButton *event,
- GtkWidget *entry)
-{
- guint state = event->state & gtk_accelerator_get_default_mod_mask ();
-
- if (event->type == GDK_BUTTON_RELEASE &&
- event->button == 1 &&
- state == 0 /* left */)
- {
- ephy_search_entry_clear (EPHY_SEARCH_ENTRY (entry));
-
- return TRUE;
- }
-
- return FALSE;
-}
-
static GtkWidget *
build_search_box (EphyBookmarksEditor *editor)
{