summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2010-08-10 15:57:22 -0400
committerShaun McCance <shaunm@gnome.org>2010-08-10 15:57:22 -0400
commit345267427dd2111a9e4d88ae6a40670bd658a60f (patch)
tree5036166a97f4fc29c0ff69e19af3e0f43d4e8b6a /src
parent6473af829d49fb48cdb9c7a29b369be2ee1df1e6 (diff)
downloadyelp-345267427dd2111a9e4d88ae6a40670bd658a60f.tar.gz
[yelp-location-entry] Add bookmark when icon clicked
Diffstat (limited to 'src')
-rw-r--r--src/yelp-window.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/yelp-window.c b/src/yelp-window.c
index a977e9b2..042277af 100644
--- a/src/yelp-window.c
+++ b/src/yelp-window.c
@@ -107,8 +107,6 @@ static gboolean find_entry_key_press (GtkEntry *entry,
static void find_entry_changed (GtkEntry *entry,
YelpWindow *window);
-static void entry_bookmark_clicked (YelpLocationEntry *entry,
- YelpWindow *window);
static gboolean entry_focus_in (GtkEntry *entry,
GdkEventFocus *event,
YelpWindow *window);
@@ -524,9 +522,6 @@ window_construct (YelpWindow *window)
g_signal_connect (priv->entry, "focus-out-event",
G_CALLBACK (entry_focus_out), window);
- g_signal_connect (priv->entry, "bookmark-clicked",
- G_CALLBACK (entry_bookmark_clicked), window);
-
priv->align_location = g_object_ref_sink (gtk_alignment_new (0.0, 0.5, 1.0, 0.0));
gtk_box_pack_start (GTK_BOX (priv->hbox),
GTK_WIDGET (priv->align_location),
@@ -1350,13 +1345,6 @@ find_entry_changed (GtkEntry *entry,
g_free (text);
}
-static void
-entry_bookmark_clicked (YelpLocationEntry *entry,
- YelpWindow *window)
-{
- window_add_bookmark (NULL, window);
-}
-
static gboolean
entry_color_animate (YelpWindow *window)
{