GtkAboutDialog: escape mail addresses

This got lost when converting to the ::activate-link signal.
This commit is contained in:
Matthias Clasen 2010-09-24 12:02:37 -04:00
parent 8578ff4b38
commit 26c93dc04b

View File

@ -2102,9 +2102,17 @@ text_view_new (GtkAboutDialog *about,
"underline", PANGO_UNDERLINE_SINGLE,
NULL);
if (strcmp (link_type, "email") == 0)
uri = g_strconcat ("mailto:", link, NULL);
{
gchar *escaped;
escaped = g_uri_escape_string (link, NULL, FALSE);
uri = g_strconcat ("mailto:", escaped, NULL);
g_free (escaped);
}
else
uri = g_strdup (link);
{
uri = g_strdup (link);
}
g_object_set_data_full (G_OBJECT (tag), I_("uri"), uri, g_free);
gtk_text_buffer_insert_with_tags (buffer, &end, link, -1, tag, NULL);