diff options
Diffstat (limited to 'src/ephy-favicon-action.c')
-rw-r--r-- | src/ephy-favicon-action.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ephy-favicon-action.c b/src/ephy-favicon-action.c index 9e68af1f3..e3c39ac0c 100644 --- a/src/ephy-favicon-action.c +++ b/src/ephy-favicon-action.c @@ -94,7 +94,6 @@ each_url_get_data_binder (EphyDragEachSelectedItemDataGet iteratee, { const char *title; char *location; - char *netscape_url; EphyTab *tab; EphyEmbed *embed; EphyWindow *window = EPHY_WINDOW(iterator_context); @@ -104,11 +103,8 @@ each_url_get_data_binder (EphyDragEachSelectedItemDataGet iteratee, ephy_embed_get_location (embed, TRUE, &location); title = ephy_tab_get_title (tab); - netscape_url = g_strconcat (location, "\n", title, NULL); + iteratee (location, title, data); - iteratee (netscape_url, -1, -1, -1, -1, data); - - g_free (netscape_url); g_free (location); } |