From 7c993081e44e39fce79e362136e79b1037a41d07 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 28 Feb 2011 17:59:40 +0100 Subject: Bug #641805 - Clicking links in mail composer opens URL twice --- composer/e-msg-composer.c | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'composer') diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index d2d9837a45..41703561c1 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -2416,25 +2416,6 @@ msg_composer_image_uri (GtkhtmlEditor *editor, return g_strconcat ("cid:", cid, NULL); } -static void -msg_composer_link_clicked (GtkhtmlEditor *editor, - const gchar *uri) -{ - if (uri == NULL || *uri == '\0') - return; - - if (g_ascii_strncasecmp (uri, "mailto:", 7) == 0) - return; - - if (g_ascii_strncasecmp (uri, "thismessage:", 12) == 0) - return; - - if (g_ascii_strncasecmp (uri, "cid:", 4) == 0) - return; - - e_show_uri (GTK_WINDOW (editor), uri); -} - static void msg_composer_object_deleted (GtkhtmlEditor *editor) { @@ -2537,7 +2518,7 @@ e_msg_composer_class_init (EMsgComposerClass *class) editor_class->command_before = msg_composer_command_before; editor_class->command_after = msg_composer_command_after; editor_class->image_uri = msg_composer_image_uri; - editor_class->link_clicked = msg_composer_link_clicked; + editor_class->link_clicked = NULL; /* EWebView takes care of it in link-clicked handler */ editor_class->object_deleted = msg_composer_object_deleted; class->presend = msg_composer_presend; -- cgit v1.2.3