diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-09-26 23:52:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-09-26 23:52:31 +0800 |
commit | 2d28568bafdae1cbdced196338feffd5a742c300 (patch) | |
tree | 713e4d61b404a5788b9c7ef6eb1fdf5d92489428 | |
parent | d65d71184afe15c6adc15a9eb483b438d6ea5067 (diff) | |
download | gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.tar gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.tar.gz gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.tar.bz2 gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.tar.lz gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.tar.xz gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.tar.zst gsoc2013-epiphany-2d28568bafdae1cbdced196338feffd5a742c300.zip |
Remove some unused code. Patch by Crispin Flowerday.
2004-09-26 Christian Persch <chpe@cvs.gnome.org>
* src/popup-commands.c: (popup_cmd_bookmark_link),
(popup_cmd_copy_image_location):
Remove some unused code. Patch by Crispin Flowerday.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/popup-commands.c | 6 |
2 files changed, 7 insertions, 6 deletions
@@ -1,3 +1,10 @@ +2004-09-26 Christian Persch <chpe@cvs.gnome.org> + + * src/popup-commands.c: (popup_cmd_bookmark_link), + (popup_cmd_copy_image_location): + + Remove some unused code. Patch by Crispin Flowerday. + 2004-09-25 Christian Persch <chpe@cvs.gnome.org> * configure.in: diff --git a/src/popup-commands.c b/src/popup-commands.c index 34dafdfc8..8c94ea246 100644 --- a/src/popup-commands.c +++ b/src/popup-commands.c @@ -94,7 +94,6 @@ popup_cmd_bookmark_link (GtkAction *action, GtkWidget *new_bookmark; EphyBookmarks *bookmarks; EphyEmbedEvent *info; - EphyEmbed *embed; const GValue *link_title; const GValue *link_rel; const GValue *link; @@ -106,7 +105,6 @@ popup_cmd_bookmark_link (GtkAction *action, gboolean is_smart; info = get_event_info (window); - embed = ephy_window_get_active_embed (window); ephy_embed_event_get_property (info, "link_is_smart", &link_is_smart); ephy_embed_event_get_property (info, "link", &link); @@ -332,10 +330,6 @@ popup_cmd_copy_image_location (GtkAction *action, EphyEmbedEvent *info; const char *location; const GValue *value; - EphyEmbed *embed; - - embed = ephy_window_get_active_embed (window); - g_return_if_fail (embed != NULL); info = get_event_info (window); ephy_embed_event_get_property (info, "image", &value); |