static void on_popup_social_bm_link_activate (GtkWidget *widget, gpointer user_data) { gchar *url = social_get_bookmark_url ((gchar *)user_data, ""); (void)browser_tabs_add_new (url, url, TRUE); g_free (url); }
void social_add_bookmark (const itemPtr item) { gchar *link = item_make_link (item); gchar *url = social_get_bookmark_url (link, item_get_title (item)); (void)browser_tabs_add_new (url, social_get_bookmark_site(), TRUE); g_free (link); g_free (url); }